diff --git a/lua/lazyvim/plugins/extras/lang/rego.lua b/lua/lazyvim/plugins/extras/lang/rego.lua new file mode 100644 index 0000000000..d605c68465 --- /dev/null +++ b/lua/lazyvim/plugins/extras/lang/rego.lua @@ -0,0 +1,20 @@ +return { + recommended = { + ft = "rego", + }, + { + "neovim/nvim-lspconfig", + opts = { + servers = { + regols = {}, + regal = {}, + }, + }, + }, + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { "rego" }, + }, + }, +}