From e3d726c7db3142cdc34b6dd462def182eeb6002b Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Sun, 5 Jun 2011 17:47:30 -0500 Subject: Fixed some minor bugs. --- init.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'init.el') diff --git a/init.el b/init.el index e452016..6c06566 100644 --- a/init.el +++ b/init.el @@ -1,7 +1,6 @@ ;; ~/.emacs.d/init.el (~/.emacs) ;; Luke Hoersten - ;;;; General ;;;; (add-to-list 'load-path "~/.emacs.d") ; set default emacs load path @@ -57,13 +56,7 @@ (scroll-bar-mode -1) ; remove scroll bar (visual-line-mode t) ; word wrap break on whitespace (global-hl-line-mode t) ; highlight current line - (set-frame-font (get-font)) - - ;; twilight theme - (require 'color-theme) - (load "color-theme-twilight") - (color-theme-twilight) - )) + (set-frame-font (get-font)))) ;;; terminal (global-set-key (kbd "C-c s") 'eshell) ; start shell @@ -140,6 +133,13 @@ (require 'move-line) ; move line up or down (require 'rainbow-delimiters) ; multi-colored parens +;;; twilight theme +(if window-system + (progn + (require 'color-theme) + (load "color-theme-twilight") + (color-theme-twilight))) + ;;; yasnippets (add-to-list 'load-path "~/.emacs.d/thirdparty/yasnippet") (require 'yasnippet) -- cgit v1.2.3