diff options
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) |