refactor(nvim): update git nix code
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-12-22 03:20:05 -05:00
parent 157a74df47
commit b34b174c68

View file

@ -1,4 +1,14 @@
{pkgs, ...}: { {
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf;
cfg = config.programs.neovim;
in {
config = mkIf cfg.enable {
programs.neovim.plugins = [ programs.neovim.plugins = [
pkgs.vimPlugins.fugitive pkgs.vimPlugins.fugitive
@ -24,4 +34,8 @@
''; '';
} }
]; ];
};
# For accurate stack trace
_file = ./default.nix;
} }