A major mode for the Bicep language.
I recently started working with Bicep, but found out that there was no package for Emacs. This is my first attempt at writing a package for Emacs, so it can be a bit rough around the edges.
- Very basic syntax highlighting
- LSP Intergration (thanks to damienpontifex)
to make this work, you need to install the lsp client
(cd $(mktemp -d) \
&& curl -fLO https://github.com/Azure/bicep/releases/latest/download/bicep-langserver.zip \
&& sudo rm -rf /usr/local/bin/bicep-langserver \
&& sudo unzip -d /usr/local/bin/bicep-langserver bicep-langserver.zip)
I'm working on making this a variable.
This package is not in melpa yet, here are some options to install it.
(bicep-mode :type git :host github :repo "christiaan-janssen/bicep-mode")
With Doom Emacs you can clone the package to a local dir and add this to you config.el
:
(use-package! "bicep-mode"
:load-path "path/to/bicep-mode")