18 lines
365 B
Lua
18 lines
365 B
Lua
|
return {
|
||
|
'catppuccin/nvim',
|
||
|
lazy = false,
|
||
|
priority = 1000,
|
||
|
config = function()
|
||
|
require('catppuccin').setup({
|
||
|
flavour = 'mocha',
|
||
|
integrations = {
|
||
|
cmp = true,
|
||
|
nvimtree = true,
|
||
|
treesitter = true
|
||
|
}
|
||
|
})
|
||
|
vim.cmd[[colorscheme catppuccin]]
|
||
|
end
|
||
|
}
|
||
|
|