nix-community.nixvim/tests/test-sources/plugins/by-name/fugit2/default.nix
2025-01-03 19:45:28 +00:00

39 lines
702 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 = null;
gpgme_path = "gpgme";
external_diffview = false;
blame_priority = 1;
blame_info_width = 60;
blame_info_height = 10;
colorscheme = null;
};
};
};
example = {
plugins.fugit2 = {
enable = true;
settings = {
width = "62%";
height = "90%";
external_diffview = true;
};
};
};
}