aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-theme.el
blob: 379b2948cf0c8dabf41ea07e836e8559e519a7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;; init-theme.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;

;;; Code:
(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)

;;; init-theme.el ends here