emacs-base/lisp/init-theme.el
2018-06-29 22:31:11 -05:00

11 lines
287 B
EmacsLisp

(require-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)
(provide 'init-theme)