Files
.emacs.d/mode-customizations/js-mode.el
Jim Myhrberg 1907feb14f Disable highlight-indentation-current-column-mode for certain modes
Ruby, PHP, JavaScript and others have closing statements for code
blocks. Highlightighting the current indentation level serves as more of
annoyance than a useful tool. The same it not true for the likes of
Python or CoffeeScript for example.
2012-04-04 11:03:43 +01:00

10 lines
289 B
EmacsLisp

(add-hook 'js-mode-hook
(lambda ()
(setq js-indent-level 2)
(flyspell-prog-mode)
(linum-mode t)
(fci-mode)
(setq tab-width 2)
(setq highlight-indentation-offset 2)
(highlight-indentation-mode)))