plugins/fugit2: init

This commit is contained in:
Gaetan Lepage 2025-01-02 00:27:51 +01:00 committed by nix-infra-bot
parent 3285bbda0a
commit e1b39b725e
2 changed files with 111 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{
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;
};
};
};
}