mirror of
https://github.com/zoriya/flake.git
synced 2025-12-19 04:55:22 +00:00
22 lines
347 B
Lua
22 lines
347 B
Lua
return {
|
|
{
|
|
"catppuccin-nvim",
|
|
colorscheme = "catppuccin",
|
|
lazy = false,
|
|
priority = 1000,
|
|
load = function() end,
|
|
opt = {
|
|
integrations = {
|
|
telescope = {
|
|
enabled = true,
|
|
style = "nvchad"
|
|
}
|
|
},
|
|
},
|
|
after = function(plug)
|
|
require("catppuccin").setup(plug.opt)
|
|
vim.cmd.colorscheme("catppuccin")
|
|
end,
|
|
},
|
|
}
|