diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-07-27 13:33:41 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-07-27 13:33:41 -0700 |
commit | ca14c2c4222d177a829e206218556bc1918d5b31 (patch) | |
tree | aa4be62b99faba4daca189f73ffbeabc52a408d2 | |
parent | [emacs] add midnight mode to clean up buffers (diff) | |
download | emacs.d-ca14c2c4222d177a829e206218556bc1918d5b31.tar.gz |
Set the font to Droid Sans Mono
Closes #9
Diffstat (limited to '')
-rw-r--r-- | emacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 32892f1..d10f3a4 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -64,6 +64,9 @@ ;; highlight current line (global-hl-line-mode 1) +;; Set default font +(set-face-attribute 'default nil :family "Droid Sans Mono" :height 130 :weight 'normal :width 'normal) + ;; no menu (menu-bar-mode -1) |