nvim/lua/plugs/edit-plugs.lua

28 lines
500 B
Lua
Raw Normal View History

2023-10-08 23:27:05 +08:00
return {
{
-- surround 和 wildfire 配合有神奇的效果
'tpope/vim-surround',
'gcmt/wildfire.vim',
2023-11-18 23:21:18 +08:00
-- 多光标
'terryma/vim-multiple-cursors',
2023-10-08 23:27:05 +08:00
},
{
--格式整理
{
'junegunn/vim-easy-align',
config = function ()
G.map({
{"v", "ga", ":EasyAlign<CR>", {noremap = true}},
})
end
},
2023-10-09 16:14:40 +08:00
},
{
2023-10-08 23:27:05 +08:00
-- 括号箭头
'yaocccc/nvim-hlchunk',
-- 注释插件
2023-11-19 07:56:01 +08:00
'tpope/vim-commentary',
2023-10-10 18:14:47 +08:00
},
2023-10-08 23:27:05 +08:00
}