AutoYADM commit: 2024-11-26 14:30:05

This commit is contained in:
Daniel Fichtinger 2024-11-26 14:30:05 -05:00
parent fa680621b8
commit 261be59946
4 changed files with 54 additions and 14 deletions

View file

@ -0,0 +1,15 @@
return {
"chrisgrieser/nvim-spider",
lazy = true,
keys = {
{ "e", "<cmd>lua require('spider').motion('e')<CR>", mode = { "n", "o", "x" } },
{ "w", "<cmd>lua require('spider').motion('w')<CR>", mode = { "n", "o", "x" } },
{ "b", "<cmd>lua require('spider').motion('b')<CR>", mode = { "n", "o", "x" } },
},
opts = {
skipInsignificantPunctuation = true,
consistentOperatorPending = false, -- see "Consistent Operator-pending Mode" in the README
subwordMovement = true,
customPatterns = {}, -- check "Custom Movement Patterns" in the README for details
},
}