From eabb2ba37c8c50880813a8359488c311bbfbb985 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Thu, 31 Oct 2024 00:52:24 -0400 Subject: [PATCH] fix(emacs): remove redundant hook name for mode Signed-off-by: Lucas Sta Maria --- .emacs.d/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 3109854..1f71d51 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -210,7 +210,7 @@ (use-package inf-elixir :straight t) (use-package nix-mode :straight t) (use-package irony :straight t - :hook ((c++-mode-hook c-mode-hook) . irony-mode)) + :hook ((c++-mode c-mode) . irony-mode)) ;; ====== Custom =============================