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,
|
|
},
|
|
}
|