diff --git a/init.el b/init.el index 9831781b..b52211cc 100644 --- a/init.el +++ b/init.el @@ -19,6 +19,7 @@ (normal-top-level-add-subdirs-to-load-path)) (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/zenburn") +(load-theme 'zenburn t) ;; ============================================================================= ;; General Emacs Options @@ -178,9 +179,15 @@ (require 'whitespace) (require 'rainbow-delimiters) -(set-face-background 'mode-line "black") -(set-face-foreground 'mode-line "white") -(set-face-background 'mode-line-inactive "black") +;; make whitespace-mode use just basic coloring +(setq whitespace-style (quote (spaces tabs newline space-mark tab-mark newline-mark))) +(setq whitespace-display-mappings + '((space-mark 32 [183] [46]) + (tab-mark 9 [9655 9] [92 9]))) + +;; (set-face-background 'mode-line "black") +;; (set-face-foreground 'mode-line "white") +;; (set-face-background 'mode-line-inactive "black") ;; Customize font-faces (custom-set-faces @@ -204,3 +211,15 @@ ;; ============================================================================= (load-file "~/.emacs.d/emacs-for-python/epy-init.el") + +(setq skeleton-pair nil) ;; This stuff sucks. + +;; ============================================================================= +;; Customize +;; ============================================================================= +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(custom-safe-themes (quote ("36a309985a0f9ed1a0c3a69625802f87dee940767c9e200b89cdebdb737e5b29" default))))