summaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-01-02 03:10:52 +0100
committerGravatar Tom Willemsen2011-01-02 03:10:52 +0100
commit510801b768ffffcbbd60e8f6ec1512b1679c78ac (patch)
tree07481d36f0227044c030a1a2e3faa708c025db8b /emacs
parent2b8467c945910bded807b6e799de6a59628173a5 (diff)
downloaddotfiles-510801b768ffffcbbd60e8f6ec1512b1679c78ac.tar.gz
dotfiles-510801b768ffffcbbd60e8f6ec1512b1679c78ac.zip
Replaced whitespace-mode with column-marker-mode, seems faster
Diffstat (limited to 'emacs')
-rw-r--r--emacs6
1 files changed, 5 insertions, 1 deletions
diff --git a/emacs b/emacs
index 30d5884..43ebf1d 100644
--- a/emacs
+++ b/emacs
@@ -11,6 +11,7 @@
(require 'tabbar)
(require 'minimap)
;(require 'manage-org)
+(require 'column-marker)
;; Auto complete
(require 'auto-complete-config)
@@ -54,6 +55,8 @@
; autosave file location
inhibit-default-init t)
(setq-default indent-tabs-mode nil) ; spaces, no tabs
+;;(setq whitespace-line-column 80)
+;;(setq whitespace-style '(face lines))
(fset 'yes-or-no-p 'y-or-n-p) ; switch yes or no answers to y or n
; answers
@@ -122,7 +125,8 @@
;;; C
(add-hook 'c-mode-hook
(lambda ()
- (hs-minor-mode t)))
+ (hs-minor-mode t)
+ (column-marker-1 80)))
;;; CSS
(add-hook 'css-mode-hook
(lambda ()