From d0e850f74216ff310b9b77823ffc23aa72e144a1 Mon Sep 17 00:00:00 2001 From: Jakub Date: Tue, 18 Nov 2025 12:48:53 +0800 Subject: [PATCH] Add bicep language support --- workflows/csharp-custom.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/workflows/csharp-custom.el b/workflows/csharp-custom.el index ee2c121..23dcecf 100644 --- a/workflows/csharp-custom.el +++ b/workflows/csharp-custom.el @@ -32,6 +32,10 @@ (add-hook 'csharp-mode-hook #'eglot-ensure) (add-hook 'csharp-ts-mode-hook #'eglot-ensure)) +(when (executable-find "bicep-langserver") + (use-package bicep-mode + :straight (bicep-mode :type git :host github :repo "christiaan-janssen/bicep-mode"))) + (provide 'csharp-custom) ;;; csharp-custom.el ends here