From 6e60d1aede462f09f1fa5fd3ebf466d2d0423704 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Mon, 13 May 2019 20:15:23 -0500 Subject: [PATCH] Fix decentralized configuration theme, closed #11 --- modules/init-theme.el | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/init-theme.el b/modules/init-theme.el index 379b294..28dec12 100644 --- a/modules/init-theme.el +++ b/modules/init-theme.el @@ -5,12 +5,13 @@ ;;; 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)) + (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)