From d8cdf07279ad4530426bf41166720c21801a4ae0 Mon Sep 17 00:00:00 2001 From: Jakub Date: Tue, 18 Nov 2025 13:18:25 +0800 Subject: [PATCH] Remove hook as it's borken --- workflows/csharp-custom.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflows/csharp-custom.el b/workflows/csharp-custom.el index 706efe0..069fec0 100644 --- a/workflows/csharp-custom.el +++ b/workflows/csharp-custom.el @@ -35,8 +35,8 @@ (when (executable-find "bicep") (use-package bicep-mode :straight (bicep-mode :type git :host github :repo "christiaan-janssen/bicep-mode") - :hook (bicep-mode . eglot-ensure) - :config (add-to-list 'eglot-server-programs '(bicep-mode "dotnet" "/usr/local/bin/bicep-langserver/Bicep.LangServer.dll")))) + :config (add-to-list 'eglot-server-programs '(bicep-mode "dotnet" "/usr/local/bin/bicep-langserver/Bicep.LangServer.dll")) + (add-to-list 'auto-mode-alist '("\\.bicep\\'" . bicep-mode)))) (provide 'csharp-custom)