mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
add git to packages that require it (#41)
This commit is contained in:
parent
3fd651df25
commit
8fffcdcbc4
2 changed files with 2 additions and 0 deletions
|
@ -128,6 +128,7 @@ in
|
||||||
in
|
in
|
||||||
mkIf cfg.enable {
|
mkIf cfg.enable {
|
||||||
extraPlugins = [ pkgs.vimPlugins.lualine-nvim ];
|
extraPlugins = [ pkgs.vimPlugins.lualine-nvim ];
|
||||||
|
extraPackages = [ pkgs.git ];
|
||||||
extraConfigLua =
|
extraConfigLua =
|
||||||
''require("lualine").setup(${helpers.toLuaObject setupOptions})'';
|
''require("lualine").setup(${helpers.toLuaObject setupOptions})'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -256,5 +256,6 @@ in
|
||||||
extraConfigLua = ''
|
extraConfigLua = ''
|
||||||
require('nvim-tree').setup(${helpers.toLuaObject options})
|
require('nvim-tree').setup(${helpers.toLuaObject options})
|
||||||
'';
|
'';
|
||||||
|
extraPackages = [ pkgs.git ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue