testing
Some checks failed
git-sync-with-mirror / git-sync (push) Has been cancelled
git-sync-with-mirror / test (push) Has been cancelled

This commit is contained in:
2026-02-28 00:21:19 -05:00
parent 1aedc8d100
commit a0ebf16cdf
8 changed files with 70 additions and 58 deletions

View File

@@ -5,18 +5,23 @@
;;; Code:
(use-package counsel
:after ivy
:config (counsel-mode))
:init
(setq counsel-mode t)
:config
(counsel-mode))
(use-package ivy
:defer 0.1
:defer 0.2
:diminish
:bind (("C-c C-r" . ivy-resume)
("C-x B" . ivy-switch-buffer-other-window))
:commands ivy-mode
:custom
(ivy-count-format "(%d/%d) ")
(ivy-use-virtual-buffers t)
:config (ivy-mode))
:init
(setq ivy-count-format "(%d/%d) "
ivy-use-virtual-buffers t
ivy-fixed-height-minibuffer t
ivy-virtual-abbreviate 'full)
:config
(ivy-mode))
(use-package ivy-rich
:after ivy