This commit is contained in:
QQ 2023-10-09 16:14:40 +08:00
parent 3b6c8ee310
commit 149e2a93c5
4 changed files with 18 additions and 5 deletions

View File

@ -8,7 +8,8 @@ if not G.loop.fs_stat(lazypath) then
"clone", "clone",
"--filter=blob:none", "--filter=blob:none",
"http://git.qqnewbie.top/newbieQQ/lazy.nvim.git", "http://git.qqnewbie.top/newbieQQ/lazy.nvim.git",
"--branch=stable", -- latest stable release -- latest stable release
"--branch=stable",
lazypath, lazypath,
}) })

View File

@ -3,7 +3,8 @@ return {
-- 多光标 -- 多光标
'terryma/vim-multiple-cursors', 'terryma/vim-multiple-cursors',
require("normal.plugsettings.edit-plugs.lua"), require("normal.plugsettings.edit-plugs"),
require("normal.plugsettings.hop"),
} }

View File

@ -15,12 +15,11 @@ return {
}) })
end end
}, },
},
{ {
-- 括号箭头 -- 括号箭头
'yaocccc/nvim-hlchunk', 'yaocccc/nvim-hlchunk',
-- 注释插件 -- 注释插件
'tpope/vim-commentary', 'tpope/vim-commentary',
} }
}
} }

View File

@ -0,0 +1,12 @@
return {
"phaazon/hop.nvim",
branch = "v2",
config = function ()
require("hop").setup{keys = 'etovxqpdygfblzhckisuran'}
G.map({
{"n", "<leader>f", ":HopChar1MW<CR>", {noremap = true}},
{"n", "<leader>F", ":HopChar2MW<CR>", {noremap = true}},
})
end
}