summary refs log tree commit diff
path: root/emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/init.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 9007763..387848a 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -450,6 +450,15 @@
   (add-hook 'sh-mode-hook 'set-sh-mode-indent)
   (add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p))
 
+(use-package smart-mode-line
+  :ensure t
+  :config
+  (progn
+    (setq sml/theme 'light
+        ;; https://github.com/Malabarba/smart-mode-line#installation-issues-faq
+          sml/no-confirm-load-theme t)
+    (sml/setup)))
+
 (use-package swiper
   ;; install swiper
   :ensure t)