Enable highlight-indentation-current-column-mode in most languages

This commit is contained in:
2012-03-27 14:55:07 +01:00
parent 968784a53c
commit b858438d17
10 changed files with 17 additions and 6 deletions

View File

@@ -8,4 +8,5 @@
(fci-mode)
(setq tab-width 2)
(setq highlight-indentation-offset 2)
(highlight-indentation-mode)))
(highlight-indentation-mode)
(highlight-indentation-current-column-mode)))

View File

@@ -6,4 +6,5 @@
(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)))

View File

@@ -14,4 +14,5 @@
(linum-mode t)
(fci-mode)
(setq highlight-indentation-offset 2)
(highlight-indentation-mode)))
(highlight-indentation-mode)
(highlight-indentation-current-column-mode)))

View File

@@ -7,4 +7,5 @@
(linum-mode t)
(fci-mode)
(setq highlight-indentation-offset 2)
(highlight-indentation-mode)))
(highlight-indentation-mode)
(highlight-indentation-current-column-mode)))

View File

@@ -6,4 +6,5 @@
(fci-mode)
(setq tab-width 2)
(setq highlight-indentation-offset 2)
(highlight-indentation-mode)))
(highlight-indentation-mode)
(highlight-indentation-current-column-mode)))

View File

@@ -3,4 +3,6 @@
(setq whitespace-action (quote (auto-cleanup)))
(flyspell-prog-mode)
(linum-mode t)
(fci-mode)))
(fci-mode)
(highlight-indentation-mode)
(highlight-indentation-current-column-mode)))

View File

@@ -4,4 +4,5 @@
(linum-mode t)
(fci-mode)
(highlight-indentation-mode)
(highlight-indentation-current-column-mode)
(define-key python-mode-map (kbd "RET") 'newline-and-indent)))

View File

@@ -24,6 +24,7 @@
(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)

View File

@@ -3,4 +3,5 @@
(flyspell-prog-mode)
(linum-mode t)
(fci-mode)
(highlight-indentation-mode)))
(highlight-indentation-mode)
(highlight-indentation-current-column-mode)))

View File

@@ -9,4 +9,5 @@
(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)))