17 lines
365 B
Lua
17 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
|
|
}
|
|
|