all repos — nixfiles @ 867e97a7c1bae699c5d043be26b44aff45fc68a0

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

Emacs: Disable typo-mode in yaml and jinja modes
Alan Pearce alan@alanpearce.co.uk
Mon, 01 Feb 2016 19:40:32 +0100
commit

867e97a7c1bae699c5d043be26b44aff45fc68a0

parent

53bc9ff3cf20191ad7b07f482ffb6418404e7dfd

1 files changed, 5 insertions(+), 1 deletions(-)

jump to
M tag-emacs/emacs.d/init.orgtag-emacs/emacs.d/init.org
@@ -2313,7 +2313,11 @@ (use-package typo     :config (progn
               (typo-global-mode 1))
     :init (progn
-            (add-hook 'text-mode-hook #'typo-mode)))
+            (add-hook 'text-mode-hook #'typo-mode)
+            (defun typo-mode-turn-off ()
+              (typo-mode -1))
+            (add-hook 'yaml-mode-hook #'turn-off-typo-mode)
+            (add-hook 'jinja2-mode-hook #'turn-off-typo-mode)))
 #+END_SRC
 
 ** avy