diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-02 16:09:00 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-02 16:09:00 -0700 |
commit | b23fef2811f037507a81967596623525e642918e (patch) | |
tree | 923cb745f6f18b911bc8fafa2edd48d6397d793d | |
parent | [bash] I still need RVM to publish dashboards ... (diff) | |
download | emacs.d-b23fef2811f037507a81967596623525e642918e.tar.gz |
[emacs] Move diminish at the top.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 927f3c2..83d028b 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -26,6 +26,9 @@ :config (unless (server-running-p) (server-start))) +(use-package diminish + :ensure t) + ;; other packages (use-package ag :ensure t @@ -38,9 +41,6 @@ :config (setq counsel-find-file-at-point t)) -(use-package diminish - :ensure t) - (use-package dired :bind ("C-x C-d" . dired) :config |