dotfiles/.config/nvim/lua/plugins/rainbow-delimeters.lua
Sergio Laín 2cce8ffdc8
🐛 fix(nvim): rewrite of a lot of the config style, options and plugins
new terminal, telescope plugins moved into telescope.lua for eassier management and a lot more
2023-10-16 12:46:37 +02:00

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",
},
},
},
}