mirror of https://github.com/sgoudham/dotfiles.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
641 B
Lua
26 lines
641 B
Lua
1 year ago
|
return {
|
||
|
{
|
||
|
"catppuccin/nvim",
|
||
|
name = "catppuccin",
|
||
|
opts = {
|
||
|
styles = { -- Handles the styles of general hi groups (see `:h highlight-args`):
|
||
|
comments = { "italic" }, -- Change the style of comments
|
||
|
},
|
||
|
integrations = {
|
||
|
navic = {
|
||
|
custom_bg = "#181825",
|
||
|
},
|
||
|
},
|
||
|
custom_highlights = function(c)
|
||
|
return {
|
||
|
["@parameter"] = { style = {} },
|
||
|
["@conditional"] = { style = {} },
|
||
|
Conditional = { style = {} },
|
||
|
["@namespace"] = { style = {} },
|
||
|
MiniIndentscopeSymbol = { fg = c.pink },
|
||
|
}
|
||
|
end,
|
||
|
},
|
||
|
},
|
||
|
}
|