diff options
author | Franck Cuny <fcuny@twitter.com> | 2018-01-17 13:41:44 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2018-01-17 13:41:44 -0800 |
commit | 021db6983c9345bf32994a435cc086d0188160fd (patch) | |
tree | ccc43cf46f1c8f1b976c136050b88af4dfd5cef7 | |
parent | [git] Add configuration for GCloud repositories. (diff) | |
download | emacs.d-021db6983c9345bf32994a435cc086d0188160fd.tar.gz |
[emacs] Default theme / font / colors.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/init.el | 1 | ||||
-rw-r--r-- | emacs.d/lib/settings.el | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index aefb530..715222b 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -8,7 +8,6 @@ (load (emacs-lib "settings")) (load (emacs-lib "funcs")) (load (emacs-lib "bindings")) -(load (emacs-lib "wabi-sabi-theme")) (when (>= emacs-major-version 24) (load (emacs-lib "packages")) diff --git a/emacs.d/lib/settings.el b/emacs.d/lib/settings.el index 8c221d1..7107c43 100644 --- a/emacs.d/lib/settings.el +++ b/emacs.d/lib/settings.el @@ -88,7 +88,7 @@ (global-hl-line-mode 1) ;; Set default font. -(set-face-attribute 'default nil :height 150 :font "Go Mono" :weight 'normal :width 'normal) +(set-face-attribute 'default nil :height 130 :font "Menlo" :weight 'normal :width 'normal) ;; no bell (setq visible-bell nil) |