Compare commits
2 commits
8eb335397a
...
14452344b4
| Author | SHA1 | Date | |
|---|---|---|---|
| 14452344b4 | |||
| b7820a7571 |
4 changed files with 13 additions and 4 deletions
7
.gitmodules
vendored
7
.gitmodules
vendored
|
|
@ -30,9 +30,6 @@
|
|||
[submodule "pack/general/start/vim-toml"]
|
||||
path = pack/general/start/vim-toml
|
||||
url = https://github.com/cespare/vim-toml
|
||||
[submodule "pack/general/start/vim-wordmotion"]
|
||||
path = pack/general/start/vim-wordmotion
|
||||
url = https://github.com/chaoren/vim-wordmotion
|
||||
[submodule "pack/general/start/gitsigns.nvim"]
|
||||
path = pack/general/start/gitsigns.nvim
|
||||
url = https://github.com/lewis6991/gitsigns.nvim
|
||||
|
|
@ -132,3 +129,7 @@
|
|||
path = pack/general/start/nvim-surround
|
||||
url = https://github.com/kylechui/nvim-surround
|
||||
branch = main
|
||||
[submodule "pack/general/start/nvim-spider"]
|
||||
path = pack/general/start/nvim-spider
|
||||
url = https://github.com/chrisgrieser/nvim-spider
|
||||
branch = main
|
||||
|
|
|
|||
8
init.lua
8
init.lua
|
|
@ -612,3 +612,11 @@ vim.diagnostic.config({
|
|||
|
||||
---- nvim-surround
|
||||
require("nvim-surround").setup()
|
||||
|
||||
--- nvim-spider
|
||||
-- we need to use the ex-command version to cal the commands to allow dot repeatability
|
||||
-- see: https://github.com/chrisgrieser/nvim-spider#installation
|
||||
vim.keymap.set({ "n", "o", "x" }, "w", "<cmd>lua require('spider').motion('w')<CR>", { desc = "Spider-w" })
|
||||
vim.keymap.set({ "n", "o", "x" }, "e", "<cmd>lua require('spider').motion('e')<CR>", { desc = "Spider-e" })
|
||||
vim.keymap.set({ "n", "o", "x" }, "b", "<cmd>lua require('spider').motion('b')<CR>", { desc = "Spider-b" })
|
||||
vim.keymap.set({ "n", "o", "x" }, "ge", "<cmd>lua require('spider').motion('ge')<CR>", { desc = "Spider-ge" })
|
||||
|
|
|
|||
1
pack/general/start/nvim-spider
Submodule
1
pack/general/start/nvim-spider
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit be7273858d75673a0ae594552742eb8769f35d6a
|
||||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 81d9bd298376ab0dc465c85d55afa4cb8d5f47a1
|
||||
Loading…
Add table
Reference in a new issue