diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-08-28T22·19-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-08-28T22·32+0000 |
commit | 13088392e2fbb358b00fb5f6a3b9c16928d70a97 (patch) | |
tree | 71cd7339ffd8958ed6ef268abd73edda41d2957a | |
parent | 74a6a9c8179b8b342b927678f12f825a91d00d04 (diff) |
fix(gs/emacs): Load slack after defining color vars r/1732
Change-Id: Ife6164bd4b4d68f82a01d34354c19c1a90c943ff Reviewed-on: https://cl.tvl.fyi/c/depot/+/1870 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
-rw-r--r-- | users/glittershark/emacs.d/config.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/glittershark/emacs.d/config.el b/users/glittershark/emacs.d/config.el index ed14ff587be9..51c268e1e68e 100644 --- a/users/glittershark/emacs.d/config.el +++ b/users/glittershark/emacs.d/config.el @@ -27,7 +27,6 @@ (load! "email") (load! "cpp") (load! "lisp") -(load! "slack") (require 'tvl) @@ -157,6 +156,8 @@ (add-to-list 'custom-theme-load-path "~/.doom.d/themes") (load-theme 'grfn-solarized-light t) +(load! "slack") + (defface haskell-import-face `((t (:foreground ,+solarized-magenta))) "") (setq doom-theme 'grfn-solarized-light) |