mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
39 lines
702 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|