nvim/pack/acp/start/nvim-lspconfig/lua/lspconfig/server_configurations/regols.lua

29 lines
596 B
Lua
Raw Normal View History

2024-04-06 13:39:53 +00:00
local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'regols' },
filetypes = { 'rego' },
root_dir = function(fname)
return util.root_pattern '*.rego'(fname) or util.find_git_ancestor(fname)
end,
single_file_support = true,
},
docs = {
description = [[
https://github.com/kitagry/regols
OPA Rego language server.
`regols` can be installed by running:
```sh
go install github.com/kitagry/regols@latest
```
]],
default_config = {
root_dir = [[root_pattern("*.rego", ".git")]],
single_file_support = true,
},
},
}