diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-navigation.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-navigation.el b/emacs.d/custom/fcuny-navigation.el index 56dd003..f418a1a 100644 --- a/emacs.d/custom/fcuny-navigation.el +++ b/emacs.d/custom/fcuny-navigation.el @@ -93,6 +93,16 @@ ("C-c s" . swiper-at-point) ("C-s" . swiper))) +(use-package ivy-rich + :ensure t + :after (ivy) + :config + (ivy-rich-mode 1) + :custom + (ivy-virtual-abbreviate 'full) + (ivy-rich-switch-buffer-align-virtual-buffer t) + (ivy-rich-path-style 'abbrev)) + (use-package recentf :init (recentf-mode 1) :config |