1
0
Fork 0

Install spider to Neovim

This commit is contained in:
Avery 2025-06-25 12:02:21 +00:00
parent 51c171c8dc
commit 1e22e3c978
Signed by: Avery
GPG key ID: B684FD451B692E04
2 changed files with 13 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./lualine.nix
./neo-tree.nix
./none-ls.nix
./spider.nix
./treesitter.nix
];
programs.nixvim = {

View file

@ -0,0 +1,12 @@
{ ... }: {
programs.nixvim.plugins.spider = {
enable = true;
extraOptions = { subwordMovement = true; };
keymaps.motions = {
b = "b";
e = "e";
ge = "ge";
w = "w";
};
};
}