mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
16 lines
358 B
EmacsLisp
16 lines
358 B
EmacsLisp
(defun customizations-for-js-mode ()
|
|
(interactive)
|
|
(setq js-indent-level 2)
|
|
(flyspell-prog-mode)
|
|
(flycheck-mode)
|
|
(linum-mode t)
|
|
(fci-mode)
|
|
(hs-minor-mode 1)
|
|
(auto-complete-mode)
|
|
(subword-mode)
|
|
(setq tab-width 2)
|
|
(setq highlight-indentation-offset 2)
|
|
(highlight-indentation-mode))
|
|
|
|
(add-hook 'js-mode-hook 'customizations-for-js-mode)
|