kitagry / regols

OPA Rego language server
MIT License
36 stars 6 forks source link
language-server lsp rego

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