8 lines
253 B
Lua
8 lines
253 B
Lua
---@type vim.lsp.Config
|
|
|
|
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" },
|
|
}
|