Add narf-terminal-theme; new font (Fira Mono)

This commit is contained in:
Henrik Lissner 2016-05-20 01:46:45 -04:00
parent 35af21c704
commit 83e13e4df6
2 changed files with 6 additions and 4 deletions

View file

@ -6,7 +6,8 @@
;; Global constants
(eval-and-compile
(defconst narf-default-theme 'wombat)
(defconst narf-default-theme 'wombat)
(defconst narf-terminal-theme 'wombat)
(defconst narf-default-font nil)
(defconst narf-emacs-dir (expand-file-name "." user-emacs-directory))
@ -72,7 +73,7 @@
;; Local settings
(load "~/.emacs.local.el" t t)
(setq narf-current-theme narf-default-theme
(setq narf-current-theme (if (display-graphic-p) narf-default-theme narf-terminal-theme)
narf-current-font narf-default-font)
;; Here we a'go!
(mapc 'require packages)