Fix decentralized configuration theme, closed #11

This commit is contained in:
Jesús
2019-05-13 20:15:23 -05:00
parent 82f87f85d8
commit 6e60d1aede

View File

@@ -5,12 +5,13 @@
;;; Code: ;;; Code:
(use-package sublime-themes (use-package sublime-themes
:config :config
(load-theme 'spolsky t) (load-theme 'spolsky t))
;; Fix linum current-line highlight. Doesn't looks good with this theme
(defface my-linum-hl ;; Fix linum current-line highlight. Doesn't looks good with this theme
'((t :background "gray30" :foreground "gold")) (defface my-linum-hl
"Face for the currently active Line number" '((t :background "gray30" :foreground "gold"))
:group 'linum)) "Face for the currently active Line number"
:group 'linum)
(provide 'init-theme) (provide 'init-theme)