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/gitmessenger/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

40 lines
879 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.__raw = "nil";
max_popup_width.__raw = "nil";
date_format = "%c";
conceal_word_diff_marker = true;
floating_win_opts.__empty = { };
popup_content_margins = true;
};
};
};
example = {
plugins.gitmessenger = {
enable = true;
settings = {
extra_blame_args = "-w";
include_diff = "current";
floating_win_opts.border = "single";
};
};
};
}