nvim/lua/normal/plugsettings/edit-plugs.lua

27 lines
489 B
Lua
Raw Normal View History

2023-10-08 23:27:05 +08:00
return {
{
-- surround 和 wildfire 配合有神奇的效果
'tpope/vim-surround',
'gcmt/wildfire.vim',
},
{
--格式整理
{
'junegunn/vim-easy-align',
2023-10-09 17:01:31 +08:00
lazy = true,
2023-10-08 23:27:05 +08:00
cmd = "EasyAlign",
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',
-- 注释插件
'tpope/vim-commentary',
}
}