aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-theme.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/init-theme.el')
-rw-r--r--modules/init-theme.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/init-theme.el b/modules/init-theme.el
new file mode 100644
index 0000000..379b294
--- /dev/null
+++ b/modules/init-theme.el
@@ -0,0 +1,17 @@
+;;; init-theme.el --- .Emacs Configuration -*- lexical-binding: t -*-
+;;; Commentary:
+;;
+
+;;; 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))
+
+(provide 'init-theme)
+
+;;; init-theme.el ends here