regols icon indicating copy to clipboard operation
regols copied to clipboard

OPA Rego language server

regols

OPA rego language server

regols

Install

MacOS

brew install kitagry/tap/regols

Other

Download from Release page.

Or, you can build as following.

go install github.com/kitagry/regols@latest

Configuration

Configuration for nvim-lspconfig

local nvim_lsp = require'lspconfig'
local configs = require'lspconfig.configs'

if not configs.regols then
  configs.regols = {
    default_config = {
      cmd = {'regols'};
      filetypes = { 'rego' };
      root_dir = nvim_lsp.util.root_pattern(".git");
    }
  }
end
configs.regols.setup{}

Specs

  • [x] textDocument/publishDiagnostics
  • [x] textDocument/formatting
  • [x] textDocument/definition
  • [x] textDocument/completion
  • [x] textDocument/hover