]> gitweb.michael.orlitzky.com - emacs.d.git/blob - mode-hooks/ecmascript-mode-hooks.el
Added an indentation hook for ecmascript-mode.
[emacs.d.git] / mode-hooks / ecmascript-mode-hooks.el
1 (defun esm-hook()
2 (setq c-indentation-style "gnu")
3 (setq c-basic-offset 2)
4 )
5
6
7 (add-hook 'ecmascript-mode-hook (function esm-hook))