nvim/lua/normal/plug.lua

48 lines
726 B
Lua
Raw Normal View History

2023-10-01 17:18:36 +08:00
return {
2023-01-19 18:14:43 +08:00
2023-10-01 09:21:32 +08:00
-- 括号箭头
2023-05-09 20:06:48 +08:00
'yaocccc/nvim-hlchunk',
2023-01-19 18:14:43 +08:00
2023-05-09 20:06:48 +08:00
-- surround 和 wildfire 配合有神奇的效果
'tpope/vim-surround',
'gcmt/wildfire.vim',
2023-01-19 18:14:43 +08:00
2023-05-09 20:06:48 +08:00
-- 格式整理
'junegunn/vim-easy-align',
'tpope/vim-commentary',
2023-01-19 18:14:43 +08:00
2023-10-01 00:45:00 +08:00
-- 多光标
'terryma/vim-multiple-cursors',
2023-01-19 20:33:35 +08:00
2023-01-28 16:20:45 +08:00
2023-02-10 17:24:19 +08:00
2023-05-08 11:30:06 +08:00
2023-02-11 13:36:26 +08:00
2023-10-01 00:45:00 +08:00
-- 项目管理 {
2023-05-16 21:58:17 +08:00
-- 'Shatur/neovim-session-manager',
-- dependencies = {
-- 'nvim-lua/plenary.nvim'
-- }
-- },
2023-09-30 20:08:03 +08:00
--{
-- 'glepnir/dashboard-nvim',
-- event = 'VimEnter',
-- config = function()
-- require('dashboard').setup {
2023-05-16 21:58:17 +08:00
-- config
2023-09-30 20:08:03 +08:00
-- }
-- end,
-- dependencies = { {'nvim-tree/nvim-web-devicons'}}
-- }
2023-10-01 00:45:00 +08:00
-- lsp 补全以及语法高亮
-- {'neoclide/coc.nvim', branch = 'release'},
2023-05-09 14:08:36 +08:00
2023-10-01 17:18:36 +08:00
}
2023-01-19 18:14:43 +08:00