Breaking change: remove font and theme settings

I am removing settings for core configuration to reduce "magic" in Doom.
set! is meant for cross-configuring modules that may or may not be
enabled. There should be no such concern for configuring Doom core.

From now on, change your fonts with:

  (setq doom-font (font-spec :family "Fira Mono" :size 12)
        doom-variable-pitch-font (font-spec :family "Fira Sans")
        doom-unicode-font (font-spec :family "DejaVu Sans Mono")
        doom-big-font (font-spec :family "Fira Mono" :size 19))
This commit is contained in:
Henrik Lissner 2017-12-08 22:40:31 -05:00
parent f063a08891
commit 5a09d539ba
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 44 additions and 57 deletions

View file

@ -3,7 +3,7 @@
;; <https://github.com/hlissner/emacs-doom-theme>
(def-package! doom-themes
:config
(set! :theme 'doom-one)
(unless doom-theme (setq doom-theme 'doom-one))
;; Ensure `doom/reload-load-path' reloads common faces
(defun +doom|reload-theme ()