diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-01-29 09:08:23 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-01-29 09:08:23 -0800 |
commit | e7baca83647a91c266b4d863d456143af2061164 (patch) | |
tree | 9ccf9a55764a3eefd9b8501d1ddbf27d94b5ec40 | |
parent | [tmux] try a new binding to split windows. (diff) | |
download | emacs.d-e7baca83647a91c266b4d863d456143af2061164.tar.gz |
[emacs] stop using `diminish`.
-rw-r--r-- | emacs.d/inits/00_ui.el | 6 | ||||
-rw-r--r-- | emacs.d/inits/20_helm.el | 1 | ||||
-rw-r--r-- | emacs.d/inits/50_development.el | 2 |
3 files changed, 0 insertions, 9 deletions
diff --git a/emacs.d/inits/00_ui.el b/emacs.d/inits/00_ui.el index f5d5257..732aaa0 100644 --- a/emacs.d/inits/00_ui.el +++ b/emacs.d/inits/00_ui.el @@ -42,9 +42,3 @@ (setq sml/mode-width 'full) (sml/setup) (add-to-list 'sml/hidden-modes " WS"))) - -(use-package diminish - :ensure t - :config - (progn - (eval-after-load "whitespace" '(diminish 'whitespace-mode)))) diff --git a/emacs.d/inits/20_helm.el b/emacs.d/inits/20_helm.el index 8cc68ea..f72c4bc 100644 --- a/emacs.d/inits/20_helm.el +++ b/emacs.d/inits/20_helm.el @@ -1,6 +1,5 @@ (use-package helm :ensure t - :diminish helm-mode :bind (("C-x C-f" . helm-find-files) ("M-x" . helm-M-x)) :config diff --git a/emacs.d/inits/50_development.el b/emacs.d/inits/50_development.el index efab59f..4c2ae5d 100644 --- a/emacs.d/inits/50_development.el +++ b/emacs.d/inits/50_development.el @@ -9,7 +9,6 @@ (use-package projectile :ensure t - :diminish projectile-mode :init (setq projectile-enable-caching t) :config @@ -35,7 +34,6 @@ (use-package smartparens :ensure t - :diminish smartparens-mode :config (progn (require 'smartparens-config) |