diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2021-11-20 20:18:16 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2021-11-20 20:18:16 -0500 |
commit | 33a5726726d29f826ffea8292c0ba230a69892c9 (patch) | |
tree | a2ee0b49207f779d68c7556ff9b7abc392c25fb2 | |
parent | ad284296335a7a57ac823a83b3ef478bab0ebaf8 (diff) |
update theme on pincer
-rw-r--r-- | emacs/.doom.d/config.el | 2 | ||||
-rw-r--r-- | emacs/.doom.d/init.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/emacs/.doom.d/config.el b/emacs/.doom.d/config.el index 69fdc8b..556a2be 100644 --- a/emacs/.doom.d/config.el +++ b/emacs/.doom.d/config.el @@ -24,6 +24,8 @@ ;; available. You can either set `doom-theme' or manually load a theme with the ;; `load-theme' function. This is the default: (setq doom-theme 'doom-dark+) +(when (equal "pincer" (system-name)) + (setq doom-theme 'doom-one-light)) ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads! diff --git a/emacs/.doom.d/init.el b/emacs/.doom.d/init.el index 89343dd..16fa494 100644 --- a/emacs/.doom.d/init.el +++ b/emacs/.doom.d/init.el @@ -34,7 +34,7 @@ hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW ;;hydra ;;indent-guides ; highlighted indent columns - ;;minimap ; show a map of the code on the side + minimap ; show a map of the code on the side modeline ; snazzy, Atom-inspired modeline, plus API ;;nav-flash ; blink cursor line after big motions ;;neotree ; a project drawer, like NERDTree for vim |