diff --git a/mode-customizations/css-mode.el b/mode-customizations/css-mode.el index 94b6faa..13cb2d1 100644 --- a/mode-customizations/css-mode.el +++ b/mode-customizations/css-mode.el @@ -6,5 +6,4 @@ (setq css-indent-offset 2) (setq highlight-indentation-offset 2) (highlight-indentation-mode) - (highlight-indentation-current-column-mode) (define-key css-mode-map (kbd "RET") 'newline-and-indent))) diff --git a/mode-customizations/js-mode.el b/mode-customizations/js-mode.el index d511885..8892bbe 100644 --- a/mode-customizations/js-mode.el +++ b/mode-customizations/js-mode.el @@ -6,5 +6,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/mode-customizations/php-mode.el b/mode-customizations/php-mode.el index 6e92978..b3635e0 100644 --- a/mode-customizations/php-mode.el +++ b/mode-customizations/php-mode.el @@ -4,5 +4,4 @@ (flyspell-prog-mode) (linum-mode t) (fci-mode) - (highlight-indentation-mode) - (highlight-indentation-current-column-mode))) + (highlight-indentation-mode))) diff --git a/mode-customizations/ruby-mode.el b/mode-customizations/ruby-mode.el index ca06478..ff45716 100644 --- a/mode-customizations/ruby-mode.el +++ b/mode-customizations/ruby-mode.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/mode-customizations/sh-mode.el b/mode-customizations/sh-mode.el index c1dadc9..9a771c2 100644 --- a/mode-customizations/sh-mode.el +++ b/mode-customizations/sh-mode.el @@ -3,5 +3,4 @@ (flyspell-prog-mode) (linum-mode t) (fci-mode) - (highlight-indentation-mode) - (highlight-indentation-current-column-mode))) + (highlight-indentation-mode)))