diff options
Diffstat (limited to 'nvim/lsp/bzl.lua')
| -rwxr-xr-x | nvim/lsp/bzl.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nvim/lsp/bzl.lua b/nvim/lsp/bzl.lua new file mode 100755 index 0000000..565f7cb --- /dev/null +++ b/nvim/lsp/bzl.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://bzl.io/ +--- +--- https://docs.stack.build/docs/cli/installation +--- +--- https://docs.stack.build/docs/vscode/starlark-language-server +return { + cmd = { 'bzl', 'lsp', 'serve' }, + filetypes = { 'bzl' }, + -- https://docs.bazel.build/versions/5.4.1/build-ref.html#workspace + root_markers = { 'WORKSPACE', 'WORKSPACE.bazel' }, +} |
