nvim-config/lua/plugins/catppuccin.lua

19 lines
390 B
Lua
Raw Normal View History

2024-05-26 10:48:54 -05:00
return {
{
"catppuccin/nvim",
name = "catppuccin",
opts = {
dim_inactive = { enabled = true, percentage = 0.25 },
highlight_overrides = {
mocha = function(c)
return {
Normal = { bg = c.mantle },
Comment = { fg = "#7687a0" },
["@tag.attribute"] = { style = {} },
}
end,
},
},
},
}