1
1
Fork 0
dotfiles/nvim/lua/plugins/theme.lua
2025-06-16 10:36:32 -06:00

18 lines
455 B
Lua

return {
"catppuccin/nvim",
lazy = true,
name = "catppuccin",
opts = {
flavour = "mocha",
integrations = {
cmp = true,
gitsigns = true,
treesitter = true,
barbar = true,
},
transparent_background = true, -- disables setting the background color.
styles = { -- Handles the styles of general hi groups (see `:h highlight-args`):
comments = { "italic" }, -- Change the style of comments
},
}
}