summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2015-11-18 21:05:42 -0800
committerFranck Cuny <franckcuny@gmail.com>2015-11-18 21:05:42 -0800
commitfc4409a1cc51f3f1b7a02c9be4c563a2e4f4c40b (patch)
tree5a52f41c97665076b0abb7997e18d12f2ec007f7
parent[emacs] Add `helm`. (diff)
downloademacs.d-fc4409a1cc51f3f1b7a02c9be4c563a2e4f4c40b.tar.gz
[emacs] use leuven for the theme.
-rw-r--r--emacs.d/inits/00_ui.el19
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