Added smart-mode-line

In line with this I've finally kicked the Nyan-cat out. Sorry!
This commit is contained in:
Vincent Ambo 2013-10-19 22:44:30 +02:00
parent 53162ecd24
commit 8a33aaa7ca
4 changed files with 12 additions and 13 deletions

View file

@ -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)