add git to packages that require it (#41)

This commit is contained in:
Matilde Bravo 2022-10-03 19:02:55 +01:00 committed by GitHub
parent 3fd651df25
commit 8fffcdcbc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -128,6 +128,7 @@ in
in
mkIf cfg.enable {
extraPlugins = [ pkgs.vimPlugins.lualine-nvim ];
extraPackages = [ pkgs.git ];
extraConfigLua =
''require("lualine").setup(${helpers.toLuaObject setupOptions})'';
};

View file

@ -256,5 +256,6 @@ in
extraConfigLua = ''
require('nvim-tree').setup(${helpers.toLuaObject options})
'';
extraPackages = [ pkgs.git ];
};
}