31 lines
586 B
Lua
31 lines
586 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
opts = {
|
|
flavour = "mocha",
|
|
transparent_background = true,
|
|
integrations = {
|
|
cmp = true,
|
|
gitsigns = true,
|
|
nvimtree = true,
|
|
telescope = { enabled = true },
|
|
treesitter = true,
|
|
mini = { enabled = true },
|
|
which_key = true,
|
|
dashboard = true,
|
|
noice = true,
|
|
notify = true,
|
|
lsp_trouble = true,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
},
|
|
},
|
|
}
|