Files
flake/nvim/lua/plugins/theme.lua
T
2024-12-27 18:12:52 +01:00

25 lines
416 B
Lua

return {
{
"catppuccin-nvim",
colorscheme = "catppuccin",
lazy = false,
priority = 1000,
load = function() end,
opt = {
integrations = {
telescope = {
enabled = true,
style = "nvchad"
},
blink_cmp = true,
harpoon = true,
nvim_surround = true,
},
},
after = function(plug)
require("catppuccin").setup(plug.opt)
vim.cmd.colorscheme("catppuccin")
end,
},
}