aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-05-13 20:15:23 -0500
committerJesús <heckyel@hyperbola.info>2019-05-13 20:15:23 -0500
commit6e60d1aede462f09f1fa5fd3ebf466d2d0423704 (patch)
tree4c348a718db4d671a71c35cb40a4e9883bf40b52 /modules
parent82f87f85d8447808dc6ebd6a4796287815274ff1 (diff)
downloademacs-personal-6e60d1aede462f09f1fa5fd3ebf466d2d0423704.tar.lz
emacs-personal-6e60d1aede462f09f1fa5fd3ebf466d2d0423704.tar.xz
emacs-personal-6e60d1aede462f09f1fa5fd3ebf466d2d0423704.zip
Fix decentralized configuration theme, closed #11
Diffstat (limited to 'modules')
-rw-r--r--modules/init-theme.el13
1 files 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)