From 43b455c8f9aa26c611e5089e8e4ac3632298f93a Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 3 May 2024 11:47:57 +0200 Subject: emacs: make ts-mode hooks always reflect their non-ts mode hooks --- user/emacs/init.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'user/emacs/init.el') diff --git a/user/emacs/init.el b/user/emacs/init.el index 60417b95..670334f3 100644 --- a/user/emacs/init.el +++ b/user/emacs/init.el @@ -1003,19 +1003,19 @@ _C-k_: prev _u_pper _=_: upper/lower _s_mart resolve (setq treemacs-no-png-images t))) (if (boundp 'typescript-mode-hook) - (setq typescript-ts-mode-hook typescript-mode-hook)) + (defvaralias typescript-ts-mode-hook typescript-mode-hook)) (if (boundp 'dockerfile-mode-hook) - (setq dockerfile-ts-mode-hook dockerfile-mode-hook)) + (defvaralias dockerfile-ts-mode-hook dockerfile-mode-hook)) (if (boundp 'yaml-mode-hook) - (setq yaml-ts-mode-hook yaml-mode-hook)) + (defvaralias yaml-ts-mode-hook yaml-mode-hook)) (if (boundp 'go-mode-hook) - (setq go-ts-mode-hook go-mode-hook)) + (defvaralias go-ts-mode-hook go-mode-hook)) (if (boundp 'nix-mode-hook) - (setq nix-ts-mode-hook nix-mode-hook)) + (defvaralias nix-ts-mode-hook nix-mode-hook)) (use-package eglot :defer 3 -- cgit 1.4.1