summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-01-29 09:25:49 -0800
committerFranck Cuny <franckcuny@gmail.com>2016-01-29 09:25:49 -0800
commit3c739282948cc7be79f54c87befb769b960bed38 (patch)
treed520b9b1fbaeee783ef49154b89ac0a5b37c4d3f /emacs.d
parent[emacs] add `helm-ag` (diff)
downloademacs.d-3c739282948cc7be79f54c87befb769b960bed38.tar.gz
[emacs] stop using `smart-mode-line` module.
Diffstat (limited to '')
-rw-r--r--emacs.d/inits/00_ui.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/emacs.d/inits/00_ui.el b/emacs.d/inits/00_ui.el
index 732aaa0..6abfa20 100644
--- a/emacs.d/inits/00_ui.el
+++ b/emacs.d/inits/00_ui.el
@@ -28,17 +28,3 @@
 (require 'whitespace)
 (global-whitespace-mode 1)
 (setq whitespace-style '(face trailing tabs tab-mark))
-
-;; smart mode-line
-(use-package smart-mode-line
-  :ensure t
-  :init
-  (progn
-    (setq sml/no-confirm-load-theme t)
-    (setq sml/theme nil)
-    (setq sml/name-width 30)
-    (setq sml/shorten-directory t)
-    (setq sml/shorten-modes t)
-    (setq sml/mode-width 'full)
-    (sml/setup)
-    (add-to-list 'sml/hidden-modes " WS")))