mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-19 09:08:35 +02:00
14 lines
391 B
Lua
14 lines
391 B
Lua
|
return {
|
||
|
{ -- You can easily change to a different colorscheme.
|
||
|
'catppuccin/nvim',
|
||
|
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||
|
init = function()
|
||
|
-- Load the colorscheme here.
|
||
|
vim.cmd.colorscheme 'catppuccin-mocha'
|
||
|
|
||
|
-- You can configure highlights by doing something like:
|
||
|
vim.cmd.hi 'Comment gui=none'
|
||
|
end,
|
||
|
},
|
||
|
}
|