diff options
author | Jesús <heckyel@hyperbola.info> | 2018-10-26 23:27:56 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-10-26 23:27:56 -0500 |
commit | aaa86c4187942abc0869a133e917dbf32b95bb6b (patch) | |
tree | 81b70622b1133001482b99323b24797f15a6126c /lisp/init-theme.el | |
parent | 4a3d8a46f926bc810238ec32d7141b3c965abbd9 (diff) | |
download | emacs-personal-aaa86c4187942abc0869a133e917dbf32b95bb6b.tar.lz emacs-personal-aaa86c4187942abc0869a133e917dbf32b95bb6b.tar.xz emacs-personal-aaa86c4187942abc0869a133e917dbf32b95bb6b.zip |
single syntax with «use-package»
Diffstat (limited to 'lisp/init-theme.el')
-rw-r--r-- | lisp/init-theme.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/init-theme.el b/lisp/init-theme.el index d2c1b23..b3f0cd1 100644 --- a/lisp/init-theme.el +++ b/lisp/init-theme.el @@ -1,10 +1,10 @@ -(use-package sublime-themes) -(load-theme 'spolsky t) - -;; Fix linum current-line highlight. Doesn't looks good with this theme -(defface my-linum-hl - '((t :background "gray30" :foreground "gold")) - "Face for the currently active Line number" - :group 'linum) +(use-package sublime-themes + :config + (load-theme 'spolsky t) + ;; Fix linum current-line highlight. Doesn't looks good with this theme + (defface my-linum-hl + '((t :background "gray30" :foreground "gold")) + "Face for the currently active Line number" + :group 'linum)) (provide 'init-theme) |