Skip to content

Commit 0d7c20e

Browse files
committed
lazy: replace CamelCaseMotion by spider
1 parent 38b34b3 commit 0d7c20e

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

.gitmodules

-4
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,6 @@
7878
path = pack/bundles/start/argtextobj.vim
7979
url = https://github.com/vim-scripts/argtextobj.vim.git
8080
ignore = untracked
81-
[submodule "bundle/CamelCaseMotion"]
82-
path = pack/bundles/start/CamelCaseMotion
83-
url = https://github.com/bkad/CamelCaseMotion.git
84-
ignore = untracked
8581
[submodule "bundle/vim-localvimrc"]
8682
path = pack/bundles/start/vim-localvimrc
8783
url = https://github.com/embear/vim-localvimrc

after/plugin/motion.vim

-2
This file was deleted.

lua/plugins/spider.lua

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
return {
2+
"chrisgrieser/nvim-spider",
3+
lazy = true,
4+
keys = {
5+
{
6+
"<leader>w",
7+
"<cmd>lua require('spider').motion('w')<CR>",
8+
mode = { "n", "o", "x" },
9+
},
10+
{
11+
"<leader>e",
12+
"<cmd>lua require('spider').motion('e')<CR>",
13+
mode = { "n", "o", "x" },
14+
},
15+
{
16+
"<leader>b",
17+
"<cmd>lua require('spider').motion('b')<CR>",
18+
mode = { "n", "o", "x" },
19+
},
20+
},
21+
}

pack/bundles/start/CamelCaseMotion

-1
This file was deleted.

0 commit comments

Comments
 (0)