mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
28 lines
494 B
Nix
28 lines
494 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.alyraffauf.apps.neovim.enable {
|
|
programs.nixvim = {
|
|
enable = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
}
|