aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
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)