diff options
| author | Luke Hoersten <[email protected]> | 2010-11-06 21:28:48 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2010-11-06 21:28:48 -0500 |
| commit | ad74353762986ad9629ee49836dddc23f87db03b (patch) | |
| tree | 967190a677624c6d63a8160dabe64bbf6766d011 | |
| parent | 165250027d4806ed9e5e70f79ab2f3d577e42360 (diff) | |
Aquamacs comes with more features so I removed some mac stuff.
| -rw-r--r-- | darwin.el | 1 | ||||
| -rw-r--r-- | init.el | 5 | ||||
| -rw-r--r-- | linux.el | 5 |
3 files changed, 6 insertions, 5 deletions
@@ -6,6 +6,7 @@ (if window-system (progn + (tabbar-mode nil) (menu-bar-mode t) (set-default-font "Menlo-12") )) @@ -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 @@ -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 |
