
a lot of plugins are moving to the extra modules all the keymaps are on the keys section of each plugin which-key options are now dependant on the plugin they are in, etc
20 lines
460 B
Lua
20 lines
460 B
Lua
return {
|
|
{
|
|
"HiPhish/rainbow-delimiters.nvim",
|
|
event = "VeryLazy",
|
|
config = function(_, opts)
|
|
require("rainbow-delimiters.setup").setup({ opts })
|
|
end,
|
|
opts = {
|
|
highlight = {
|
|
"RainbowDelimiterBlue",
|
|
"RainbowDelimiterYellow",
|
|
"RainbowDelimiterViolet",
|
|
"RainbowDelimiterOrange",
|
|
"RainbowDelimiterCyan",
|
|
"RainbowDelimiterRed",
|
|
"RainbowDelimiterGreen",
|
|
},
|
|
},
|
|
},
|
|
}
|