nix-infra/modules/home/nvim/lua/plugins/example.lua
2024-04-01 19:16:35 +02:00

18 lines
461 B
Lua

-- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim
--
-- In your plugin files, you can:
-- * add extra plugins
-- * disable/enabled LazyVim plugins
-- * override the configuration of LazyVim plugins
return {
-- add catppuccin
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },
-- Configure LazyVim to load catppuccin
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin",
},
}
}