dotfiles/.config/nvim/lua/plugins/extras/ui/rainbow-delimeters.lua
Sergio Laín e457722492
📁 files(nvim): changes to the directories and extras
another bug change to the structure of the nvim config. probably, tomorrow will be finished
2023-10-25 12:38:42 +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",
},
},
},
}