1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/fugit2/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

39 lines
716 B
Nix

{
empty = {
plugins.fugit2.enable = true;
};
defaults = {
plugins.fugit2 = {
enable = true;
settings = {
width = 100;
max_width = "80%";
min_width = 50;
content_width = 60;
height = "60%";
show_patch = false;
libgit2_path.__raw = "nil";
gpgme_path = "gpgme";
external_diffview = false;
blame_priority = 1;
blame_info_width = 60;
blame_info_height = 10;
colorscheme.__raw = "nil";
};
};
};
example = {
plugins.fugit2 = {
enable = true;
settings = {
width = "62%";
height = "90%";
external_diffview = true;
};
};
};
}