57 lines
964 B
Lua
57 lines
964 B
Lua
-- Example using a list of specs with the default options
|
|
|
|
require("lazy").setup({
|
|
|
|
-- 主题插件
|
|
'nvim-lualine/lualine.nvim',
|
|
'morhetz/gruvbox',
|
|
'shaunsingh/nord.nvim',
|
|
'yaocccc/nvim-hlchunk',
|
|
|
|
-- surround 和 wildfire 配合有神奇的效果
|
|
'tpope/vim-surround',
|
|
'gcmt/wildfire.vim',
|
|
|
|
-- 格式整理
|
|
'junegunn/vim-easy-align',
|
|
'tpope/vim-commentary',
|
|
|
|
-- 多光标
|
|
'terryma/vim-multiple-cursors',
|
|
|
|
-- fzf
|
|
'vijaymarupudi/nvim-fzf',
|
|
|
|
|
|
|
|
-- github copilot
|
|
-- 'github/copilot.vim',
|
|
|
|
-- 项目管理 {
|
|
-- 'Shatur/neovim-session-manager',
|
|
-- dependencies = {
|
|
-- 'nvim-lua/plenary.nvim'
|
|
-- }
|
|
-- },
|
|
|
|
--{
|
|
-- 'glepnir/dashboard-nvim',
|
|
-- event = 'VimEnter',
|
|
-- config = function()
|
|
-- require('dashboard').setup {
|
|
-- config
|
|
-- }
|
|
-- end,
|
|
-- dependencies = { {'nvim-tree/nvim-web-devicons'}}
|
|
-- }
|
|
-- lsp 补全以及语法高亮
|
|
-- {'neoclide/coc.nvim', branch = 'release'},
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|