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
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

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 ;; Fix linum current-line highlight. Doesn't looks good with this theme
(defface my-linum-hl (defface my-linum-hl
'((t :background "gray30" :foreground "gold")) '((t :background "gray30" :foreground "gold"))
"Face for the currently active Line number" "Face for the currently active Line number"
:group 'linum)) :group 'linum)
(provide 'init-theme) (provide 'init-theme)