mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
40 lines
857 B
Nix
40 lines
857 B
Nix
{
|
|
empty = {
|
|
plugins.gitmessenger.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.gitmessenger = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
close_on_cursor_moved = true;
|
|
include_diff = "none";
|
|
git_command = "git";
|
|
no_default_mappings = false;
|
|
into_popup_after_show = true;
|
|
always_into_popup = false;
|
|
extra_blame_args = "";
|
|
preview_mods = "";
|
|
max_popup_height = null;
|
|
max_popup_width = null;
|
|
date_format = "%c";
|
|
conceal_word_diff_marker = true;
|
|
floating_win_opts = { };
|
|
popup_content_margins = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
example = {
|
|
plugins.gitmessenger = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
extra_blame_args = "-w";
|
|
include_diff = "current";
|
|
floating_win_opts.border = "single";
|
|
};
|
|
};
|
|
};
|
|
}
|