diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-08-17 08:17:57 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-08-17 08:17:57 -0700 |
commit | 1f3176e1c8a83f527905caedb16bc75f577ad228 (patch) | |
tree | 54647a818600ca7e7c805a5a0f858bf639b46ee1 | |
parent | [tmux] remove custom colors (diff) | |
download | emacs.d-1f3176e1c8a83f527905caedb16bc75f577ad228.tar.gz |
[emacs] don't highlight the code.
-rw-r--r-- | emacs.d/init.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index c57cb9a..83b622d 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -4,6 +4,9 @@ ;; show parenthesis (show-paren-mode +1) +;; no color +(global-font-lock-mode -1) + ;; and lose the stupid pipe chars on the split-screen bar (set-face-foreground 'vertical-border "white") (set-face-background 'vertical-border "white") @@ -16,9 +19,6 @@ (autoload 'ibuffer "ibuffer" "List buffers." t) -(require 'whitespace) -(global-whitespace-mode 1) - ;;; set some variables ;; add a new line at the end of the file (setq @@ -29,8 +29,7 @@ make-backup-files nil require-final-newline t tab-always-indent 'complete - vc-follow-symlinks t - whitespace-style '(face trailing tabs tab-mark)) + vc-follow-symlinks t) ;; twitter's default (setq-default |