diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2017-02-10 13:57:59 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2017-02-10 13:57:59 -0800 |
commit | 407da4b99b7b46c68175d90be5c7c437a3c924e6 (patch) | |
tree | 5de27005eaac2e098986ed11d421c6d0adcbc80d | |
parent | [Emacs] Remove `flycheck-pos-tip`. (diff) | |
download | emacs.d-407da4b99b7b46c68175d90be5c7c437a3c924e6.tar.gz |
[Emacs] Add spaceline
-rw-r--r-- | emacs.d/init.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index cee197d..a1bccb8 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -469,6 +469,13 @@ (add-hook 'sh-mode-hook 'set-sh-mode-indent) (add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)) +(use-package spaceline + :ensure t + :config + (require 'spaceline-config) + (spaceline-spacemacs-theme) + (spaceline-info-mode)) + (use-package swiper ;; install swiper :ensure t) |