Files
.emacs.d/mode-customizations/js-mode.el

12 lines
280 B
EmacsLisp

(defun customizations-for-js-mode ()
(interactive)
(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))
(add-hook 'js-mode-hook 'customizations-for-js-mode)