mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-20 09:38:33 +02:00
23 lines
608 B
Lua
23 lines
608 B
Lua
|
return {
|
||
|
{
|
||
|
'catppuccin/nvim',
|
||
|
name = 'catppuccin',
|
||
|
priority = 1000,
|
||
|
opts = {
|
||
|
flavour = 'macchiato',
|
||
|
transparent_background = true,
|
||
|
term_colors = true,
|
||
|
custom_highlights = function(colors)
|
||
|
return {
|
||
|
Comment = { fg = colors.subtext1 },
|
||
|
TabLineSel = { bg = colors.teal },
|
||
|
CmpBorder = { fg = colors.surface2 },
|
||
|
StatusLine = { fg = colors.blue },
|
||
|
GetFile = { fg = colors.blue },
|
||
|
}
|
||
|
end,
|
||
|
},
|
||
|
},
|
||
|
{ 'folke/tokyonight.nvim', name = 'tokyonight', priority = 1000, opts = { transparent = true } },
|
||
|
}
|