summaryrefslogtreecommitdiff
path: root/lisp/init-diminish.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-01-23 23:23:05 -0500
committerKyle Meyer <kyle@kyleam.com>2015-01-27 01:01:05 -0500
commitd9cae60fa5048abd3528f96a285109329639fda6 (patch)
treef4e25372dd4e8c466c82a09cd11c1dd5cb882487 /lisp/init-diminish.el
parent06d5146080137650645ad0750e23c8a238754ea6 (diff)
downloademacs.d-d9cae60fa5048abd3528f96a285109329639fda6.tar.gz
Improve organization and consistency of files
- Add pages and more headings for large files. - Try to use consistent order for file (or page) structure. * Loading * Settings * Hooks * Any mode activation or function calls * My functions * Key bindings
Diffstat (limited to 'lisp/init-diminish.el')
-rw-r--r--lisp/init-diminish.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/init-diminish.el b/lisp/init-diminish.el
index c86b062..6c63bad 100644
--- a/lisp/init-diminish.el
+++ b/lisp/init-diminish.el
@@ -1,7 +1,6 @@
(require 'diminish)
(diminish 'abbrev-mode "Ab")
-(after 'whitespace (diminish 'global-whitespace-mode))
(after 'flyspell (diminish 'flyspell-mode "Fy"))
(after 'paredit (diminish 'paredit-mode " Pe"))
(after 'magit (diminish 'magit-auto-revert-mode))
@@ -11,5 +10,7 @@
(after 'projectile (diminish 'projectile-mode))
(after 'reftex (diminish 'reftex-mode "Rf"))
(after 'view (diminish 'view-mode "Vw"))
+(after 'whitespace (diminish 'global-whitespace-mode))
+(after 'yasnippet (diminish 'yas-minor-mode))
(provide 'init-diminish)