all repos — nixfiles @ 7459e5ee09bc094fc47c0d03ec031fe2268825b9

System and user configuration, managed by nix and home-manager

Emacs: Improve coffee-mode configuration

Alan Pearce
commit

7459e5ee09bc094fc47c0d03ec031fe2268825b9

parent

9e3298f5a746407b2461159d54be486ad0337864

1 file changed, 6 insertions(+), 2 deletions(-)

jump to
M tag-emacs/emacs.d/init.orgtag-emacs/emacs.d/init.org
@@ -572,6 +572,7 @@ (add-to-list 'auto-indent-disabled-modes-list 'jinja2-mode)
(add-to-list 'auto-indent-disabled-modes-list 'yaml-mode) (add-to-list 'auto-indent-disabled-modes-list 'saltstack-mode) (add-to-list 'auto-indent-disabled-modes-list 'nix-mode) + (add-to-list 'auto-indent-disabled-modes-list 'coffee-mode) (auto-indent-global-mode))) #+END_SRC
@@ -1884,7 +1885,9 @@ *** coffee-mode
#+BEGIN_SRC emacs-lisp (use-package coffee-mode - :mode ("\\.coffee\\'" . coffee-mode)) + :mode ("\\.coffee\\'" . coffee-mode) + :config (progn + (setq coffee-indent-like-python-mode t))) #+END_SRC *** tern
@@ -2308,7 +2311,8 @@ (sp-local-pair "{%" "%}")
(sp-local-pair "{{" "}}")) (show-smartparens-global-mode t) (smartparens-global-strict-mode t) - (add-hook 'lisp-mode-common-hook #'turn-off-smartparens-mode))) + (add-hook 'lisp-mode-common-hook #'turn-off-smartparens-mode) + (add-hook 'coffee-mode-hook #'turn-off-smartparens-mode))) #+END_SRC ** move-text