aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/starpls.lua
blob: 921ed715611b50e2f45c74e853da2e6b552d45ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---@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' },
}