28 lines
481 B
Lua
28 lines
481 B
Lua
return {
|
|
{
|
|
-- surround 和 wildfire 配合有神奇的效果
|
|
'tpope/vim-surround',
|
|
'gcmt/wildfire.vim',
|
|
},
|
|
{
|
|
--格式整理
|
|
{
|
|
'junegunn/vim-easy-align',
|
|
config = function ()
|
|
G.map({
|
|
{"v", "ga", ":EasyAlign<CR>", {noremap = true}},
|
|
})
|
|
end
|
|
},
|
|
},
|
|
{
|
|
-- 括号箭头
|
|
'yaocccc/nvim-hlchunk',
|
|
-- 注释插件
|
|
'tpope/vim-commentary',
|
|
},
|
|
{
|
|
'github/copilot.vim'
|
|
}
|
|
}
|