diff options
author | David Thompson <dthompson2@worcester.edu> | 2018-09-14 08:37:00 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-09-14 08:37:00 -0400 |
commit | 8e06530867179635ca75ccbd84d26abf164f4056 (patch) | |
tree | be428c952bec1b616470160dfd78b35f46253a95 | |
parent | 4b9c0ab3b2ee5ad7196bffb10a35ee517ea14574 (diff) |
Update Emacs init.el.
-rw-r--r-- | dotfiles/.emacs.d/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el index 64d00a1..39d2c40 100644 --- a/dotfiles/.emacs.d/init.el +++ b/dotfiles/.emacs.d/init.el @@ -74,8 +74,8 @@ "Return 't' if FONT exists." (not (null (x-list-fonts font)))) -(when (font-exists-p "Inconsolata") - (set-frame-font "Inconsolata-12" nil t)) +;; Use Inconsolata font. +(add-to-list 'default-frame-alist '(font . "Inconsolata-12")) (load-theme 'wombat t) (column-number-mode t) |