mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[emacs] Configure whitespace-mode to highlight long lines
This commit is contained in:
parent
aadb781161
commit
70ab7de682
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue