diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-09-27 13:19:46 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-09-27 13:19:46 -0700 |
commit | 44419200646c520127f9bbbce67c3dd7056935b1 (patch) | |
tree | 75709e9133435f1ec10ef36c5b95581af1bab73a /emacs | |
parent | [emacs] use smart-modeline (again) (diff) | |
download | emacs.d-44419200646c520127f9bbbce67c3dd7056935b1.tar.gz |
[emacs] new package: ivy-rich
especially nice for switching buffer with the minibuffer view, it shows a little bit more information.
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 |