1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/plugins/by-name/telescope/advanced-git-search.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

57 lines
1.2 KiB
Nix

{
empty = {
plugins = {
telescope = {
enable = true;
extensions.advanced-git-search.enable = true;
};
web-devicons.enable = true;
};
};
defaults = {
plugins = {
web-devicons.enable = true;
telescope = {
enable = true;
extensions.advanced-git-search = {
enable = true;
settings = {
browse_command = "GBrowse {commit_hash}";
diff_plugin = "fugitive";
git_flags.__empty = { };
git_diff_flags.__empty = { };
git_log_flags.__empty = { };
show_builtin_git_pickers = false;
entry_default_author_or_date = "author";
keymaps = {
toggle_date_author = "<C-w>";
open_commit_in_browser = "<C-o>";
copy_commit_hash = "<C-y>";
show_entire_commit = "<C-e>";
};
};
};
};
};
};
example = {
plugins = {
web-devicons.enable = true;
telescope = {
enable = true;
extensions.advanced-git-search = {
enable = true;
settings = {
};
};
};
};
};
}