summaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-02-03 22:54:39 +0100
committerGravatar Tom Willemsen2011-02-03 22:54:39 +0100
commitba553c58ea2dbc835108c8056c4a4346d1e2a246 (patch)
tree00e9293dd9ff15341ef4e385d758f10beaf46296 /emacs
parent903d8a19d9b5bcaaac8da39b65b6f38885563bb1 (diff)
downloaddotfiles-ba553c58ea2dbc835108c8056c4a4346d1e2a246.tar.gz
dotfiles-ba553c58ea2dbc835108c8056c4a4346d1e2a246.zip
Naquadah theme
Updated naquadah theme submodule Added naquadah theme as default
Diffstat (limited to 'emacs')
-rw-r--r--emacs9
1 files changed, 6 insertions, 3 deletions
diff --git a/emacs b/emacs
index 0b6ff18..34821bf 100644
--- a/emacs
+++ b/emacs
@@ -1,5 +1,6 @@
;; -*- mode: Emacs-Lisp; -*-
(add-to-list 'load-path "~/.emacs.d")
+(add-to-list 'load-path "~/.emacs.d/naquadah-theme")
;; Requires
(require 'uniquify)
@@ -35,7 +36,7 @@
;; Platform specifics
(if (eq system-type 'gnu/linux) ; if we're running linux
- (set-default-font "-*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*"))
+ (set-frame-font "tamsyn8x15r"))
;; Variables
(setq
@@ -90,7 +91,9 @@
(add-to-list 'compilation-finish-functions 'my-comp-finish-function)
;; Color theme
-(color-theme-weirdness2)
+;(color-theme-weirdness2)
+;(require 'naquadah-theme)
+(require 'naquadah-theme)
;; Test for frame fonts
(defun setup-system-frame-colours (&rest frame)
@@ -98,7 +101,7 @@
(car frame)
(selected-frame))))
(progn
- (set-frame-font "-*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*"))))
+ (set-frame-font "tamsyn8x15r"))))
(require 'server)
(defadvice server-create-window-system-frame
(after set-system-frame-colours ())