diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-18 21:05:42 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-18 21:05:42 -0800 |
commit | fc4409a1cc51f3f1b7a02c9be4c563a2e4f4c40b (patch) | |
tree | 5a52f41c97665076b0abb7997e18d12f2ec007f7 /emacs.d/inits | |
parent | [emacs] Add `helm`. (diff) | |
download | emacs.d-fc4409a1cc51f3f1b7a02c9be4c563a2e4f4c40b.tar.gz |
[emacs] use leuven for the theme.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/00_ui.el | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/emacs.d/inits/00_ui.el b/emacs.d/inits/00_ui.el index ba11e7e..3bff535 100644 --- a/emacs.d/inits/00_ui.el +++ b/emacs.d/inits/00_ui.el @@ -15,7 +15,24 @@ ;; show the column number in the mode-line (setq column-number-mode t) -;; (set-fringe-mode 1) +(when window-system + ;;hide tool-bar + (tool-bar-mode 0) + ;;hide scroll-bar + (scroll-bar-mode 0) + ;;hide menu-bar + (menu-bar-mode +1) + ;; set the font size and family + (custom-set-faces '(default ((t (:height 105 :family "Menlo")))))) + +(require 'whitespace) +(global-whitespace-mode 1) +(setq whitespace-style '(face trailing tabs tab-mark)) + +;; leuven-theme +(use-package leuven-theme + :config + (load-theme 'leuven t)) (use-package diminish :ensure t |