-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcolors.el
More file actions
27 lines (21 loc) · 703 Bytes
/
colors.el
File metadata and controls
27 lines (21 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;;; Color theme setup, with cycling
;;; -----
(add-to-list 'load-path "~/devel/naquadah-theme/")
(add-to-list 'load-path "~/devel/snowy-theme/")
(require 'snowy-theme)
(require 'naquadah-theme)
;; (load-theme 'snowy t)
(load-theme 'naquadah t)
(when (not window-system)
(set-face-attribute 'region nil :background "blue"))
; Make the ansi-term blue not so painful
(setq ansi-color-names-vector
["black" "red" "green" "yellow" "#729fcf"
"magenta" "cyan" "white"])
(setq ansi-color-map (ansi-color-make-color-map))
(defun cwebber/medium-font ()
(interactive)
(set-frame-font "Liberation Mono-12"))
(defun cwebber/small-font ()
(interactive)
(set-frame-font "Inconsolata-12"))