nixcfg/homeManagerModules/apps/neovim/default.nix

28 lines
494 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.alyraffauf.apps.neovim.enable {
2024-06-22 23:38:24 -04:00
programs.nixvim = {
2024-03-28 19:52:15 -04:00
enable = true;
viAlias = true;
vimAlias = true;
2024-06-22 23:38:24 -04:00
colorschemes.catppuccin = {
enable = true;
settings.flavor = "frappe";
};
plugins = {
lightline.enable = true;
markdown-preview.enable = true;
neo-tree.enable = true;
neogit.enable = true;
nix.enable = true;
};
2024-03-28 19:52:15 -04:00
};
};
}