This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
forked from walter/aquamacs-emacs-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
appearance.el
43 lines (40 loc) · 1.62 KB
/
appearance.el
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;; appearance.el
;;
;; Choose a theme, etc.
;;
;; Walter McGinnis, 2009-06-28
;; Mamading Ceesay, 2010-02-14
;;
;; http://github.com/walter/aquamacs-emacs-starter-kit
;; http://github.com/evangineer/aquamacs-emacs-starter-kit
;; Set default colors to green on black
;; will override this with theme below
(setq default-frame-alist
'(
(background-color . "black")
(foreground-color . "green")
))
;; set up color theme of choice by uncommenting the one you want here
;; or simply using one of Aquamacs included themes
;; by only specifying it with line
;; (color-theme-your-chosen-theme's-name)
;; if you choose twilight or blackboard here, uncomment
;; the relevant load and setting lines for the theme
(custom-set-variables '(aquamacs-styles-mode t))
; (load-file (concat kitfiles-dir "/site-lisp" "/twilight/color-theme-twilight.el"))
; (color-theme-twilight)
; (load-file (concat kitfiles-dir "/site-lisp" "/color-theme-zen-and-art/zen-and-art.el"))
; (color-theme-zen-and-art)
; (load-file (concat kitfiles-dir "/site-lisp" "/color-theme-ir-black/color-theme-ir-black.el"))
; (color-theme-ir-black)
(load-file (concat kitfiles-dir "/site-lisp" "/color-theme-solarized/color-theme-solarized.el"))
(color-theme-solarized-dark)
; (load-file (concat kitfiles-dir "/site-lisp" "/vivid-chalk/vivid-chalk.el"))
; (color-theme-vivid-chalk)
; (load-file (concat kitfiles-dir "/site-lisp" "/blackboard.el"))
; (color-theme-blackboard)
; (load-file (concat kitfiles-dir "/site-lisp" "/sunburst.el"))
; (color-theme-sunburst)
; (load-file (concat kitfiles-dir "/site-lisp" "/hober2.el"))
; (color-theme-hober2)
(provide 'appearance)