18 lines
455 B
Lua
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
|
|
},
|
|
}
|
|
}
|