diff options
feat: use `telepath.nvim` instead of `leap-spooky.nvim`
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -42,6 +42,11 @@ url = "github:ggandor/leap-spooky.nvim"; flake = false; }; + + plugins-telepath-nvim = { + url = "github:rasulomaroff/telepath.nvim"; + flake = false; + }; }; # see :help nixCats.flake.outputs @@ -128,7 +133,7 @@ # use with packadd and an autocommand in config to achieve lazy loading optionalPlugins = { gitPlugins = with pkgs.neovimPlugins; { - leap = [ leap-spooky-nvim ]; + leap = [ leap-spooky-nvim telepath-nvim ]; }; general = with pkgs.vimPlugins; { |