src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--darwin.el1
-rw-r--r--init.el5
-rw-r--r--linux.el5
3 files changed, 6 insertions, 5 deletions
diff --git a/darwin.el b/darwin.el
index 4f0abaa..9c7e812 100644
--- a/darwin.el
+++ b/darwin.el
@@ -6,6 +6,7 @@
(if window-system
(progn
+ (tabbar-mode nil)
(menu-bar-mode t)
(set-default-font "Menlo-12")
))
diff --git a/init.el b/init.el
index 1477e6c..8a8c5d0 100644
--- a/init.el
+++ b/init.el
@@ -75,6 +75,11 @@
(scroll-bar-mode -1) ; remove scroll bar
(visual-line-mode t) ; word wrap break on whitespace
(global-hl-line-mode t)
+
+ ;; twilight theme
+ (require 'color-theme)
+ (load "color-theme-twilight")
+ (color-theme-twilight)
))
;; terminal
diff --git a/linux.el b/linux.el
index ed8968d..c337c28 100644
--- a/linux.el
+++ b/linux.el
@@ -4,11 +4,6 @@
(if window-system
(progn
(set-default-font "Monospace-10")
-
- ;; twilight theme
- (require 'color-theme)
- (load "color-theme-twilight")
- (color-theme-twilight)
))
(provide 'linux) \ No newline at end of file