mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
16 lines
378 B
Lua
16 lines
378 B
Lua
---@brief
|
|
---
|
|
--- https://bzl.io/
|
|
---
|
|
--- https://docs.stack.build/docs/cli/installation
|
|
---
|
|
--- https://docs.stack.build/docs/vscode/starlark-language-server
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'bzl', 'lsp', 'serve' },
|
|
filetypes = { 'bzl' },
|
|
-- https://docs.bazel.build/versions/5.4.1/build-ref.html#workspace
|
|
root_markers = { 'WORKSPACE', 'WORKSPACE.bazel' },
|
|
}
|