mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-11-10 03:22:15 +01: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" },
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}
|