feat: add new plugin git-worktree (#678)

Co-authored-by: Haseeb Majid <haseeb.majid@imaginecurve.com>
This commit is contained in:
Haseeb Majid 2023-11-01 14:47:45 +00:00 committed by GitHub
parent 2019968548
commit b5414a3841
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 112 additions and 0 deletions

View file

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