diff --git a/languages/coffee-script.el b/languages/coffee-script.el index 06998f2..d97ec5c 100644 --- a/languages/coffee-script.el +++ b/languages/coffee-script.el @@ -8,5 +8,4 @@ (fci-mode) (setq tab-width 2) (setq highlight-indentation-offset 2) - (highlight-indentation-mode) - (highlight-indentation-current-column-mode))) + (highlight-indentation-mode))) diff --git a/languages/python.el b/languages/python.el index d68c82e..619477c 100644 --- a/languages/python.el +++ b/languages/python.el @@ -4,5 +4,4 @@ (linum-mode t) (fci-mode) (highlight-indentation-mode) - (highlight-indentation-current-column-mode) (define-key python-mode-map (kbd "RET") 'newline-and-indent))) diff --git a/languages/ruby.el b/languages/ruby.el index ca06478..ff45716 100644 --- a/languages/ruby.el +++ b/languages/ruby.el @@ -24,7 +24,6 @@ (add-to-list 'ac-sources 'ac-source-rsense-constant)) (flymake-ruby-load) (highlight-indentation-mode) - (highlight-indentation-current-column-mode) (ruby-electric-mode t) (setq ruby-deep-arglist t) (setq ruby-deep-indent-paren nil) diff --git a/languages/shell-script.el b/languages/shell-script.el index c1dadc9..9a771c2 100644 --- a/languages/shell-script.el +++ b/languages/shell-script.el @@ -3,5 +3,4 @@ (flyspell-prog-mode) (linum-mode t) (fci-mode) - (highlight-indentation-mode) - (highlight-indentation-current-column-mode))) + (highlight-indentation-mode))) diff --git a/languages/yaml.el b/languages/yaml.el index bfffce1..80f4f27 100644 --- a/languages/yaml.el +++ b/languages/yaml.el @@ -9,5 +9,4 @@ (fci-mode) (setq highlight-indentation-offset 2) (highlight-indentation-mode) - (highlight-indentation-current-column-mode) (define-key yaml-mode-map (kbd "RET") 'newline-and-indent)))