[emacs] Configure whitespace-mode to highlight long lines

This commit is contained in:
Correl Roush 2013-06-21 12:41:52 -04:00
parent aadb781161
commit 70ab7de682

View file

@ -19,6 +19,13 @@
(require 'auto-complete-config)
(ac-config-default)
;; Whitespace
(require 'whitespace)
(setq whitespace-line-column 80) ;; limit line length
(setq whitespace-style '(face lines-tail))
(global-whitespace-mode +1)
;; Git Gutter
(global-git-gutter-mode t)