1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00
nixvim/tests/test-sources/plugins/git/git-worktree.nix
Haseeb Majid b5414a3841
feat: add new plugin git-worktree (#678)
Co-authored-by: Haseeb Majid <haseeb.majid@imaginecurve.com>
2023-11-01 15:47:45 +01:00

29 lines
489 B
Nix

{
empty = {
plugins.git-worktree.enable = true;
};
telescopeEnabled = {
plugins.telescope = {
enable = true;
};
plugins.git-worktree = {
enable = true;
enableTelescope = true;
changeDirectoryCommand = "tcd";
updateOnChange = true;
updateOnChangeCommand = "e .";
clearJumpsOnChange = true;
};
};
telescopeDisabled = {
plugins.git-worktree = {
enable = true;
enableTelescope = false;
};
};
}