git.fiddlerwoaroof.com
Browse code

Use my new zenburn theme

Ed Langley authored on 25/07/2019 01:42:47
Showing 1 changed files
... ...
@@ -2,6 +2,17 @@
2 2
 
3 3
 (setq gc-cons-threshold 100000000)
4 4
 
5
+(let ((my-theme-path (expand-file-name "~/.emacs.d/themes/")))
6
+  (add-to-list 'load-path my-theme-path)
7
+  (add-to-list 'custom-theme-load-path my-theme-path)
8
+  (load-theme 'fwoar-zenburn t))
9
+
10
+(progn (setq default-frame-alist
11
+             '((vertical-scroll-bars . nil)
12
+               (right-divider-width . 2)
13
+               (bottom-divider-width . 2)))
14
+       (modify-all-frames-parameters default-frame-alist))
15
+
5 16
 (tool-bar-mode 0)
6 17
 (scroll-bar-mode 0)
7 18