plugins.lua 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. -- 自动安装 Packer.nvim
  2. -- 插件安装目录
  3. -- ~/.local/share/nvim/site/pack/packer/
  4. local fn = vim.fn
  5. local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
  6. local paccker_bootstrap
  7. if fn.empty(fn.glob(install_path)) > 0 then
  8. vim.notify("正在安装Pakcer.nvim,请稍后...")
  9. paccker_bootstrap = fn.system({ "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim",
  10. -- "https://gitcode.net/mirrors/wbthomason/packer.nvim",
  11. install_path })
  12. -- https://github.com/wbthomason/packer.nvim/issues/750
  13. local rtp_addition = vim.fn.stdpath("data") .. "/site/pack/*/start/*"
  14. if not string.find(vim.o.runtimepath, rtp_addition) then
  15. vim.o.runtimepath = rtp_addition .. "," .. vim.o.runtimepath
  16. end
  17. vim.notify("Pakcer.nvim 安装完毕")
  18. end
  19. -- Use a protected call so we don't error out on first use
  20. local status_ok, packer = pcall(require, "packer")
  21. if not status_ok then
  22. vim.notify("没有安装 packer.nvim")
  23. return
  24. end
  25. packer.startup({
  26. function(use)
  27. -- Packer 可以管理自己本身
  28. use 'wbthomason/packer.nvim'
  29. -- 底部状态栏
  30. use {
  31. 'nvim-lualine/lualine.nvim',
  32. requires = {
  33. 'nvim-tree/nvim-web-devicons',
  34. opt = true
  35. }
  36. }
  37. use('nvim-tree/nvim-web-devicons')
  38. -- tokyonight 主题
  39. use("folke/tokyonight.nvim")
  40. -- nvim-tree 文件侧边栏
  41. use({
  42. "kyazdani42/nvim-tree.lua",
  43. requires = "kyazdani42/nvim-web-devicons"
  44. })
  45. -- 文件搜索
  46. use {
  47. 'nvim-telescope/telescope.nvim',
  48. requires = { "nvim-lua/plenary.nvim" }
  49. }
  50. -- dashboard-nvim vim 主页
  51. use {
  52. 'glepnir/dashboard-nvim',
  53. requires = { 'nvim-tree/nvim-web-devicons' }
  54. }
  55. -- 悬浮终端
  56. use 'voldikss/vim-floaterm'
  57. -- project
  58. use("ahmedkhalf/project.nvim")
  59. -- treesitter 代码高亮
  60. use {
  61. 'nvim-treesitter/nvim-treesitter',
  62. run = ':TSUpdate'
  63. }
  64. use('nvim-treesitter/nvim-tree-docs')
  65. --------------------- LSP --------------------
  66. -- use {
  67. -- 'neoclide/coc.nvim',
  68. -- branch = 'release'
  69. -- }
  70. -- mason
  71. use {
  72. "williamboman/mason.nvim",
  73. run = ":MasonUpdate" -- :MasonUpdate updates registry contents
  74. }
  75. use("williamboman/mason-lspconfig.nvim")
  76. use({ "neovim/nvim-lspconfig" })
  77. use("hrsh7th/nvim-cmp") -- completion plugin
  78. use("hrsh7th/cmp-nvim-lsp")
  79. use("jose-elias-alvarez/null-ls.nvim") -- configure formatters & linters
  80. use("jayp0521/mason-null-ls.nvim") -- bridges gap b/w mason & null-ls
  81. use("onsails/lspkind.nvim")
  82. -- 自动关闭标签
  83. use { 'windwp/nvim-ts-autotag' }
  84. -- snippet 引擎
  85. use({ "L3MON4D3/LuaSnip", run = "make install_jsregexp" })
  86. use("hrsh7th/vim-vsnip")
  87. -- 补全源
  88. use("hrsh7th/cmp-vsnip")
  89. --use("hrsh7th/cmp-nvim-lsp") -- { name = nvim_lsp }
  90. use("hrsh7th/cmp-buffer") -- { name = 'buffer' },
  91. use("hrsh7th/cmp-path") -- { name = 'path' }
  92. use("hrsh7th/cmp-cmdline") -- { name = 'cmdline' }
  93. -- 常见编程语言代码段
  94. use("rafamadriz/friendly-snippets")
  95. -- git
  96. use { 'lewis6991/gitsigns.nvim' }
  97. -- lazygit
  98. use({
  99. "kdheepak/lazygit.nvim",
  100. -- optional for floating window border decoration
  101. requires = {
  102. "nvim-lua/plenary.nvim",
  103. },
  104. })
  105. -- eslint
  106. use('MunifTanjim/eslint.nvim')
  107. -- indent
  108. use("lukas-reineke/indent-blankline.nvim")
  109. -- 闭合高亮
  110. use('leafOfTree/vim-matchtag')
  111. -- 切换窗口大小
  112. use("szw/vim-maximizer")
  113. -- 错误提示
  114. use({ "folke/trouble.nvim", requires = "kyazdani42/nvim-web-devicons" })
  115. -- 括号自动补全
  116. use {
  117. "windwp/nvim-autopairs",
  118. config = function()
  119. require("nvim-autopairs").setup {}
  120. end
  121. }
  122. -- 代码格式化
  123. use('MunifTanjim/prettier.nvim')
  124. -- 代码注释 gcc
  125. use {
  126. 'numToStr/Comment.nvim',
  127. config = function()
  128. require('Comment').setup()
  129. end
  130. }
  131. -- hop 快速跳转
  132. use {
  133. 'phaazon/hop.nvim',
  134. branch = 'v2', -- optional but strongly recommended
  135. config = function()
  136. -- you can configure Hop the way you like here; see :h hop-config
  137. require'hop'.setup { keys = 'etovxqpdygfblzhckisuran' }
  138. end
  139. }
  140. -- lspsage
  141. use("tami5/lspsaga.nvim")
  142. -- formatter
  143. use("mhartington/formatter.nvim")
  144. -- lua 增强
  145. use("folke/neodev.nvim")
  146. --json 增强
  147. use("b0o/schemastore.nvim")
  148. -- Rust 增强
  149. use("simrat39/rust-tools.nvim")
  150. end,
  151. config = {
  152. -- 并发数限制
  153. max_jobs = 16,
  154. -- 自定义源
  155. git = {
  156. -- default_url_format = "https://hub.fastgit.xyz/%s",
  157. -- default_url_format = "https://mirror.ghproxy.com/https://github.com/%s"
  158. -- default_url_format = "https://gitcode.net/mirrors/%s"
  159. -- default_url_format = "https://gitclone.com/github.com/%s",
  160. },
  161. display = {
  162. open_fn = function()
  163. return require("packer.util").float({
  164. border = "single"
  165. })
  166. end
  167. }
  168. }
  169. })
  170. -- 每次保存 plugins.lua 自动安装插件
  171. pcall(vim.cmd, [[
  172. augroup packer_user_config
  173. autocmd!
  174. autocmd BufWritePost plugins.lua source <afile> | PackerSync
  175. augroup end
  176. ]])