8 lines
342 B
Lua
8 lines
342 B
Lua
---@type vim.lsp.Config
|
|
-- curl -fLO https://github.com/Azure/bicep/releases/latest/download/bicep-langserver.zip
|
|
local bicep_lsp_bin = "/Users/oliver.ladner/bicep-langserver/Bicep.LangServer.dll"
|
|
return {
|
|
cmd = { "/opt/homebrew/opt/dotnet@8/libexec/dotnet", bicep_lsp_bin },
|
|
root_markers = { ".git" },
|
|
filetypes = { "bicep" },
|
|
}
|