aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-theme.el
blob: d2c1b23e1a524bcdf3e05f4c9cce9c83afff1907 (plain)
1
2
3
4
5
6
7
8
9
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)

(provide 'init-theme)