diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2018-04-12 08:56:31 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2018-04-12 08:56:31 -0700 |
commit | e85c58701f770ad3b278a841edcce9fbbd369b3b (patch) | |
tree | 336497ebf851827cb682c02f617008422bdfa159 | |
parent | [emacs] Fix (I think) the binding for hydra (diff) | |
download | emacs.d-e85c58701f770ad3b278a841edcce9fbbd369b3b.tar.gz |
[emacs] Add smart-mode-line and a larger fringe.
-rw-r--r-- | emacs.d/modules/module-appareance.el | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/emacs.d/modules/module-appareance.el b/emacs.d/modules/module-appareance.el index 53a34fd..10f7918 100644 --- a/emacs.d/modules/module-appareance.el +++ b/emacs.d/modules/module-appareance.el @@ -29,7 +29,7 @@ (blink-cursor-mode -1) ;; I don't want a frindge on the right -(fringe-mode '(6 . 0)) +(fringe-mode '(8 . 0)) ;; frame title (setq frame-title-format '( "%f" " [" (:eval mode-name) "]")) @@ -43,4 +43,17 @@ ;; unclutter the modeline (use-package diminish) +(use-package rich-minority) + +(use-package smart-mode-line + :init + (setq sml/theme 'light + sml/shorten-directory t + sml/no-confirm-load-theme t + sml/shorten-modes t + sml/name-width 40 + sml/mode-width 'full) + :config + (sml/setup)) + (provide 'module-appareance) |