1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/lazygit: use nestedLiteralLua

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-11-03 03:19:24 +01:00 committed by Matt Sturgeon
parent dfdc4aebfb
commit 68b07c2c34

View file

@ -4,7 +4,7 @@
}:
let
inherit (lib) types;
inherit (lib.nixvim) defaultNullOpts;
inherit (lib.nixvim) defaultNullOpts nestedLiteral;
in
lib.nixvim.plugins.mkVimPlugin {
name = "lazygit";
@ -89,6 +89,6 @@ lib.nixvim.plugins.mkVimPlugin {
floating_window_use_plenary = 0;
use_neovim_remote = 1;
use_custom_config_file_path = 0;
config_file_path = [ ];
config_file_path = nestedLiteral "lib.nixvim.emptyTable";
};
}