nixvim/config/plugins.nix

10 lines
149 B
Nix
Raw Normal View History

2024-12-13 19:01:54 -07:00
{pkgs, ...}: {
plugins = {
2024-12-13 20:14:26 -07:00
lualine.enable = true;
2024-12-13 19:01:54 -07:00
};
2024-12-13 20:12:14 -07:00
colorschemes.catppuccin = {
enable = true;
settings.flavor = "frappe";
};
2024-12-13 19:01:54 -07:00
}