mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
13 lines
334 B
Lua
13 lines
334 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/withered-magic/starpls
|
|
---
|
|
--- `starpls` is an LSP implementation for Starlark. Installation instructions can be found in the project's README.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'starpls' },
|
|
filetypes = { 'bzl' },
|
|
root_markers = { 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel' },
|
|
}
|