From 8a33aaa7caee17f42df1213e436c2fc84cf2d51d Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 19 Oct 2013 22:44:30 +0200 Subject: Added smart-mode-line In line with this I've finally kicked the Nyan-cat out. Sorry! --- init-settings.el | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'init-settings.el') diff --git a/init-settings.el b/init-settings.el index 4f78a8cc104c..470e79b20e49 100644 --- a/init-settings.el +++ b/init-settings.el @@ -1,4 +1,6 @@ (require 'uniquify) +(require 'smart-mode-line) + ; ## Generic settings ## ; Hide those ugly tool bars @@ -42,6 +44,10 @@ backup-directory-alist `(("." . ,(concat user-emacs-directory "backups"))) diff-switches "-u") +;; Fix mode line +(if after-init-time (sml/setup) + (add-hook 'after-init-hook 'sml/setup)) + (setq smex-save-file (concat user-emacs-directory ".smex-items")) (smex-initialize) (global-set-key (kbd "M-x") 'smex) -- cgit 1.4.1