diff --git a/home-manager/common/software/cli/nixvim.nix b/home-manager/common/software/cli/nixvim.nix index a7700346..7b7947ec 100644 --- a/home-manager/common/software/cli/nixvim.nix +++ b/home-manager/common/software/cli/nixvim.nix @@ -52,6 +52,8 @@ (nmap "t" "" // desc "[T]oggleTerm" // silent) (nmap "tt" ":ToggleTerm" // desc "[T]oggle Terminal") (nmap "tg" ":ToggleTerm " // desc "Show Lazy[G]it") + # Fugitive + ]; options = { @@ -92,10 +94,7 @@ # Colorize hex colors inline nvim-colorizer.enable = true; # git plugin for vim - git-worktree = { - enable = true; - enableTelescope = true; - }; + fugitive.enable = true; telescope = { enable = true; @@ -122,8 +121,8 @@ desc = "Search for [W]ord under cursor"; }; "g" = { - action = "buffers"; - desc = "Search [G]it files"; + action = "git_status"; + desc = "Search [G]it status"; }; "r" = { action = "oldfiles";