This commit is contained in:
Henrik Lissner 2014-09-29 15:24:09 -04:00
parent 2de75eb11f
commit 6dd587c8e8

View File

@ -44,24 +44,27 @@
(add-to-list 'default-frame-alist `(font . ,*font)) (add-to-list 'default-frame-alist `(font . ,*font))
(add-to-list 'default-frame-alist '(alpha 98 95)) ; *slightly* transparent window (add-to-list 'default-frame-alist '(alpha 98 95)) ; *slightly* transparent window
(when (functionp 'tool-bar-mode) (tool-bar-mode -1))
(when (functionp 'scroll-bar-mode) (scroll-bar-mode -1)) (when (functionp 'scroll-bar-mode) (scroll-bar-mode -1))
(when (functionp 'tool-bar-mode) (tool-bar-mode -1))
(when (functionp 'menu-bar-mode) (menu-bar-mode -1)) (when (functionp 'menu-bar-mode) (menu-bar-mode -1))
;;;; Modeline ;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;; Modeline ;;;;;;;;;;;;;;;;;;;;;;;;;;
(use-package smart-mode-line (use-package smart-mode-line
:config :config
(mapc (lambda(mode) (add-to-list 'rm-excluded-modes mode)) (mapc (lambda(mode) (add-to-list 'rm-excluded-modes mode))
'(" Rake" '(" SP"
" SP"
" Fill" " Fill"
" yas"
" Fly"
" EvilOrg"
)) ))
:init :init
(progn (progn
(setq sml/no-confirm-load-theme t (setq sml/no-confirm-load-theme t
sml/mode-width 'right sml/mode-width 'full
sml/show-remote nil sml/show-remote nil
sml/encoding-format nil) sml/encoding-format nil)
(add-to-list 'sml/replacer-regexp-list '("^:DB:projects/" "PR:") t)
(sml/setup) (sml/setup)
(sml/apply-theme 'respectful))) (sml/apply-theme 'respectful)))