2025-05-04 13:11:56 +02:00
|
|
|
---@type vim.lsp.Config
|
2025-11-19 11:19:16 +01:00
|
|
|
-- curl -fLO https://github.com/Azure/bicep/releases/latest/download/bicep-langserver.zip
|
2025-05-04 13:11:56 +02:00
|
|
|
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" },
|
|
|
|
|
}
|