diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-12-10 20:53:24 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-12-10 20:53:24 -0800 |
commit | a78a816797f172e997ff18e6b842d73b8bdba252 (patch) | |
tree | cacb5fe90bd87795996cdc0eca7252bfa8651b9b /emacs.d/inits/00_ui.el | |
parent | [emacs] slightly bigger font. (diff) | |
download | emacs.d-a78a816797f172e997ff18e6b842d73b8bdba252.tar.gz |
[emacs] use a bigger font and plan9 as a theme
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/00_ui.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/emacs.d/inits/00_ui.el b/emacs.d/inits/00_ui.el index 381ba57..e1c1f3e 100644 --- a/emacs.d/inits/00_ui.el +++ b/emacs.d/inits/00_ui.el @@ -23,7 +23,7 @@ ;;hide menu-bar (menu-bar-mode +1) ;; set the font size and family - (custom-set-faces '(default ((t (:height 135 :family "Droid Sans Mono")))))) + (custom-set-faces '(default ((t (:height 150 :family "Droid Sans Mono")))))) (require 'whitespace) (global-whitespace-mode 1) @@ -34,10 +34,11 @@ display-time-24hr-format t) (display-time) -;; leuven-theme -(use-package leuven-theme +;; plan9-theme +(use-package plan9-theme + :ensure t :config - (load-theme 'leuven t)) + (load-theme 'plan9 t)) ;; smart mode-line (use-package smart-mode-line |