Add narf-terminal-theme; new font (Fira Mono)
This commit is contained in:
parent
35af21c704
commit
83e13e4df6
2 changed files with 6 additions and 4 deletions
|
@ -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)
|
||||
|
|
5
init.el
5
init.el
|
@ -43,8 +43,9 @@
|
|||
(load (concat user-emacs-directory "bootstrap.el"))
|
||||
;;
|
||||
|
||||
(defconst narf-default-theme 'narf-dark)
|
||||
(defconst narf-default-font (font-spec :family "Hack" :size 12))
|
||||
(defconst narf-default-theme 'narf-one)
|
||||
(defconst narf-terminal-theme 'narf-dark)
|
||||
(defconst narf-default-font (font-spec :family "Fira Mono" :size 12))
|
||||
|
||||
(narf `(core ; core/core.el
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue