mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
21 lines
282 B
Lua
21 lines
282 B
Lua
|
return {
|
||
|
recommended = {
|
||
|
ft = "rego",
|
||
|
},
|
||
|
{
|
||
|
"neovim/nvim-lspconfig",
|
||
|
opts = {
|
||
|
servers = {
|
||
|
regols = {},
|
||
|
regal = {},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
opts = {
|
||
|
ensure_installed = { "rego" },
|
||
|
},
|
||
|
},
|
||
|
}
|