From d6fc3d474728491ecd4e5599888475f8e7cf4231 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Mon, 8 Feb 2021 09:24:40 -0500 Subject: [PATCH] Cleanup ivy loading --- README.org | 2 ++ modules/interface.el | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.org b/README.org index 48fd9cc..99bf91b 100644 --- a/README.org +++ b/README.org @@ -1204,6 +1204,7 @@ Counsel is a customized set of commands to replace built in completion buffers. #+begin_src emacs-lisp (use-package counsel + :after ivy :custom (counsel-linux-app-format-function #'counsel-linux-app-format-function-name-only) :config (counsel-mode 1)) #+end_src @@ -1219,6 +1220,7 @@ Provide more information about each item with [[https://github.com/Yevgnen/ivy-r #+begin_src emacs-lisp (use-package ivy-rich + :after counsel :init (ivy-rich-mode 1)) #+end_src diff --git a/modules/interface.el b/modules/interface.el index b5b54ff..230083a 100644 --- a/modules/interface.el +++ b/modules/interface.el @@ -3,6 +3,7 @@ :config (ivy-mode 1)) (use-package counsel + :after ivy :custom (counsel-linux-app-format-function #'counsel-linux-app-format-function-name-only) :config (counsel-mode 1)) @@ -10,6 +11,7 @@ "," '(counsel-switch-buffer :which-key "Buffers")) (use-package ivy-rich + :after counsel :init (ivy-rich-mode 1)) (set-face-attribute 'default nil :font dotfiles/font :height dotfiles/font-size)