testing
All checks were successful
git-sync-with-mirror / test (push) Successful in 3m14s
git-sync-with-mirror / git-sync (push) Successful in 13s

This commit is contained in:
2026-02-28 00:22:51 -05:00
parent 1aedc8d100
commit 6bb45b5089
8 changed files with 77 additions and 60 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