From 975cd5d27f1a055c59b46a3f14be80392b4717fa Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 16 Jan 2025 20:23:01 +0000 Subject: [PATCH] add git-workree plugin to nixvim --- home/common/core/nixvim/plugins/git-workree.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 home/common/core/nixvim/plugins/git-workree.nix diff --git a/home/common/core/nixvim/plugins/git-workree.nix b/home/common/core/nixvim/plugins/git-workree.nix new file mode 100644 index 0000000..3c2bbff --- /dev/null +++ b/home/common/core/nixvim/plugins/git-workree.nix @@ -0,0 +1,11 @@ +{ + programs.nixvim.plugins.git-worktree = { + enable = true; + enableTelescope = true; + autopush = true; + changeDirectoryCommand = "cd"; + clearJumpsOnChange = true; + updateOnChange = true; + updateOnChangeCommand = "e ."; + }; +}