aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-theme.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-theme.el')
-rw-r--r--lisp/init-theme.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/init-theme.el b/lisp/init-theme.el
new file mode 100644
index 0000000..f3407dc
--- /dev/null
+++ b/lisp/init-theme.el
@@ -0,0 +1,10 @@
+(require-package 'sublime-themes)
+(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)