packer_compiled.lua 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. -- Automatically generated packer.nvim plugin loader code
  2. if vim.api.nvim_call_function('has', {'nvim-0.5'}) ~= 1 then
  3. vim.api.nvim_command('echohl WarningMsg | echom "Invalid Neovim version for packer.nvim! | echohl None"')
  4. return
  5. end
  6. vim.api.nvim_command('packadd packer.nvim')
  7. local no_errors, error_msg = pcall(function()
  8. _G._packer = _G._packer or {}
  9. _G._packer.inside_compile = true
  10. local time
  11. local profile_info
  12. local should_profile = false
  13. if should_profile then
  14. local hrtime = vim.loop.hrtime
  15. profile_info = {}
  16. time = function(chunk, start)
  17. if start then
  18. profile_info[chunk] = hrtime()
  19. else
  20. profile_info[chunk] = (hrtime() - profile_info[chunk]) / 1e6
  21. end
  22. end
  23. else
  24. time = function(chunk, start) end
  25. end
  26. local function save_profiles(threshold)
  27. local sorted_times = {}
  28. for chunk_name, time_taken in pairs(profile_info) do
  29. sorted_times[#sorted_times + 1] = {chunk_name, time_taken}
  30. end
  31. table.sort(sorted_times, function(a, b) return a[2] > b[2] end)
  32. local results = {}
  33. for i, elem in ipairs(sorted_times) do
  34. if not threshold or threshold and elem[2] > threshold then
  35. results[i] = elem[1] .. ' took ' .. elem[2] .. 'ms'
  36. end
  37. end
  38. if threshold then
  39. table.insert(results, '(Only showing plugins that took longer than ' .. threshold .. ' ms ' .. 'to load)')
  40. end
  41. _G._packer.profile_output = results
  42. end
  43. time([[Luarocks path setup]], true)
  44. local package_path_str = "/Users/sdaduanbilei/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/Users/sdaduanbilei/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/Users/sdaduanbilei/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/Users/sdaduanbilei/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua"
  45. local install_cpath_pattern = "/Users/sdaduanbilei/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so"
  46. if not string.find(package.path, package_path_str, 1, true) then
  47. package.path = package.path .. ';' .. package_path_str
  48. end
  49. if not string.find(package.cpath, install_cpath_pattern, 1, true) then
  50. package.cpath = package.cpath .. ';' .. install_cpath_pattern
  51. end
  52. time([[Luarocks path setup]], false)
  53. time([[try_loadstring definition]], true)
  54. local function try_loadstring(s, component, name)
  55. local success, result = pcall(loadstring(s), name, _G.packer_plugins[name])
  56. if not success then
  57. vim.schedule(function()
  58. vim.api.nvim_notify('packer.nvim: Error running ' .. component .. ' for ' .. name .. ': ' .. result, vim.log.levels.ERROR, {})
  59. end)
  60. end
  61. return result
  62. end
  63. time([[try_loadstring definition]], false)
  64. time([[Defining packer_plugins]], true)
  65. _G.packer_plugins = {
  66. ["Comment.nvim"] = {
  67. config = { "\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0" },
  68. loaded = true,
  69. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/Comment.nvim",
  70. url = "https://github.com/numToStr/Comment.nvim"
  71. },
  72. LuaSnip = {
  73. loaded = true,
  74. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/LuaSnip",
  75. url = "https://github.com/L3MON4D3/LuaSnip"
  76. },
  77. ["cmp-buffer"] = {
  78. loaded = true,
  79. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/cmp-buffer",
  80. url = "https://github.com/hrsh7th/cmp-buffer"
  81. },
  82. ["cmp-cmdline"] = {
  83. loaded = true,
  84. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/cmp-cmdline",
  85. url = "https://github.com/hrsh7th/cmp-cmdline"
  86. },
  87. ["cmp-nvim-lsp"] = {
  88. loaded = true,
  89. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp",
  90. url = "https://github.com/hrsh7th/cmp-nvim-lsp"
  91. },
  92. ["cmp-path"] = {
  93. loaded = true,
  94. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/cmp-path",
  95. url = "https://github.com/hrsh7th/cmp-path"
  96. },
  97. ["cmp-vsnip"] = {
  98. loaded = true,
  99. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/cmp-vsnip",
  100. url = "https://github.com/hrsh7th/cmp-vsnip"
  101. },
  102. cmp_luasnip = {
  103. loaded = true,
  104. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/cmp_luasnip",
  105. url = "https://github.com/saadparwaiz1/cmp_luasnip"
  106. },
  107. ["dashboard-nvim"] = {
  108. loaded = true,
  109. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/dashboard-nvim",
  110. url = "https://github.com/glepnir/dashboard-nvim"
  111. },
  112. ["eslint.nvim"] = {
  113. loaded = true,
  114. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/eslint.nvim",
  115. url = "https://github.com/MunifTanjim/eslint.nvim"
  116. },
  117. ["fidget.nvim"] = {
  118. config = { "\27LJ\2\n4\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\25plugin-config.fidget\frequire\0" },
  119. loaded = true,
  120. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/fidget.nvim",
  121. url = "https://github.com/j-hui/fidget.nvim"
  122. },
  123. ["formatter.nvim"] = {
  124. loaded = true,
  125. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/formatter.nvim",
  126. url = "https://github.com/mhartington/formatter.nvim"
  127. },
  128. ["friendly-snippets"] = {
  129. loaded = true,
  130. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/friendly-snippets",
  131. url = "https://github.com/rafamadriz/friendly-snippets"
  132. },
  133. ["gitsigns.nvim"] = {
  134. loaded = true,
  135. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/gitsigns.nvim",
  136. url = "https://github.com/lewis6991/gitsigns.nvim"
  137. },
  138. ["hop.nvim"] = {
  139. config = { "\27LJ\2\nU\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0B\0\2\1K\0\1\0\1\0\1\tkeys\28etovxqpdygfblzhckisuran\nsetup\bhop\frequire\0" },
  140. loaded = true,
  141. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/hop.nvim",
  142. url = "https://github.com/phaazon/hop.nvim"
  143. },
  144. ["indent-blankline.nvim"] = {
  145. loaded = true,
  146. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim",
  147. url = "https://github.com/lukas-reineke/indent-blankline.nvim"
  148. },
  149. ["lazygit.nvim"] = {
  150. loaded = true,
  151. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lazygit.nvim",
  152. url = "https://github.com/kdheepak/lazygit.nvim"
  153. },
  154. ["lspkind.nvim"] = {
  155. loaded = true,
  156. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lspkind.nvim",
  157. url = "https://github.com/onsails/lspkind.nvim"
  158. },
  159. ["lspsaga.nvim"] = {
  160. loaded = true,
  161. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lspsaga.nvim",
  162. url = "https://github.com/tami5/lspsaga.nvim"
  163. },
  164. ["lualine.nvim"] = {
  165. loaded = true,
  166. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lualine.nvim",
  167. url = "https://github.com/nvim-lualine/lualine.nvim"
  168. },
  169. ["mason-lspconfig.nvim"] = {
  170. loaded = true,
  171. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/mason-lspconfig.nvim",
  172. url = "https://github.com/williamboman/mason-lspconfig.nvim"
  173. },
  174. ["mason-null-ls.nvim"] = {
  175. loaded = true,
  176. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/mason-null-ls.nvim",
  177. url = "https://github.com/jay-babu/mason-null-ls.nvim"
  178. },
  179. ["mason.nvim"] = {
  180. loaded = true,
  181. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/mason.nvim",
  182. url = "https://github.com/williamboman/mason.nvim"
  183. },
  184. ["neodev.nvim"] = {
  185. loaded = true,
  186. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/neodev.nvim",
  187. url = "https://github.com/folke/neodev.nvim"
  188. },
  189. ["null-ls.nvim"] = {
  190. loaded = true,
  191. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/null-ls.nvim",
  192. url = "https://github.com/jose-elias-alvarez/null-ls.nvim"
  193. },
  194. ["nvim-autopairs"] = {
  195. config = { "\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0" },
  196. loaded = true,
  197. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
  198. url = "https://github.com/windwp/nvim-autopairs"
  199. },
  200. ["nvim-cmp"] = {
  201. loaded = true,
  202. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-cmp",
  203. url = "https://github.com/hrsh7th/nvim-cmp"
  204. },
  205. ["nvim-lsp-ts-utils"] = {
  206. loaded = true,
  207. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-lsp-ts-utils",
  208. url = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils"
  209. },
  210. ["nvim-lspconfig"] = {
  211. loaded = true,
  212. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-lspconfig",
  213. url = "https://github.com/neovim/nvim-lspconfig"
  214. },
  215. ["nvim-notify"] = {
  216. config = { "\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugin-config.nvim-notify\frequire\0" },
  217. loaded = true,
  218. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-notify",
  219. url = "https://github.com/rcarriga/nvim-notify"
  220. },
  221. ["nvim-tree-docs"] = {
  222. loaded = true,
  223. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-tree-docs",
  224. url = "https://github.com/nvim-treesitter/nvim-tree-docs"
  225. },
  226. ["nvim-tree.lua"] = {
  227. loaded = true,
  228. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-tree.lua",
  229. url = "https://github.com/kyazdani42/nvim-tree.lua"
  230. },
  231. ["nvim-treesitter"] = {
  232. config = { "\27LJ\2\n=\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\"plugin-config.nvim-treesitter\frequire\0" },
  233. loaded = true,
  234. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
  235. url = "https://github.com/nvim-treesitter/nvim-treesitter"
  236. },
  237. ["nvim-treesitter-refactor"] = {
  238. loaded = true,
  239. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-treesitter-refactor",
  240. url = "https://github.com/nvim-treesitter/nvim-treesitter-refactor"
  241. },
  242. ["nvim-treesitter-textobjects"] = {
  243. loaded = true,
  244. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-treesitter-textobjects",
  245. url = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects"
  246. },
  247. ["nvim-ts-autotag"] = {
  248. loaded = true,
  249. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-ts-autotag",
  250. url = "https://github.com/windwp/nvim-ts-autotag"
  251. },
  252. ["nvim-ts-context-commentstring"] = {
  253. loaded = true,
  254. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-ts-context-commentstring",
  255. url = "https://github.com/JoosepAlviste/nvim-ts-context-commentstring"
  256. },
  257. ["nvim-ts-rainbow"] = {
  258. loaded = true,
  259. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-ts-rainbow",
  260. url = "https://github.com/p00f/nvim-ts-rainbow"
  261. },
  262. ["nvim-web-devicons"] = {
  263. loaded = true,
  264. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
  265. url = "https://github.com/nvim-tree/nvim-web-devicons"
  266. },
  267. ["packer.nvim"] = {
  268. loaded = true,
  269. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/packer.nvim",
  270. url = "https://github.com/wbthomason/packer.nvim"
  271. },
  272. ["plenary.nvim"] = {
  273. loaded = true,
  274. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/plenary.nvim",
  275. url = "https://github.com/nvim-lua/plenary.nvim"
  276. },
  277. ["prettier.nvim"] = {
  278. loaded = true,
  279. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/prettier.nvim",
  280. url = "https://github.com/MunifTanjim/prettier.nvim"
  281. },
  282. ["project.nvim"] = {
  283. loaded = true,
  284. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/project.nvim",
  285. url = "https://github.com/ahmedkhalf/project.nvim"
  286. },
  287. ["rust-tools.nvim"] = {
  288. loaded = true,
  289. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/rust-tools.nvim",
  290. url = "https://github.com/simrat39/rust-tools.nvim"
  291. },
  292. ["schemastore.nvim"] = {
  293. loaded = true,
  294. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/schemastore.nvim",
  295. url = "https://github.com/b0o/schemastore.nvim"
  296. },
  297. ["telescope.nvim"] = {
  298. loaded = true,
  299. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/telescope.nvim",
  300. url = "https://github.com/nvim-telescope/telescope.nvim"
  301. },
  302. ["tokyonight.nvim"] = {
  303. loaded = true,
  304. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/tokyonight.nvim",
  305. url = "https://github.com/folke/tokyonight.nvim"
  306. },
  307. ["trouble.nvim"] = {
  308. loaded = true,
  309. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/trouble.nvim",
  310. url = "https://github.com/folke/trouble.nvim"
  311. },
  312. ["typescript.nvim"] = {
  313. loaded = true,
  314. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/typescript.nvim",
  315. url = "https://github.com/jose-elias-alvarez/typescript.nvim"
  316. },
  317. ["vim-floaterm"] = {
  318. loaded = true,
  319. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/vim-floaterm",
  320. url = "https://github.com/voldikss/vim-floaterm"
  321. },
  322. ["vim-matchtag"] = {
  323. loaded = true,
  324. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/vim-matchtag",
  325. url = "https://github.com/leafOfTree/vim-matchtag"
  326. },
  327. ["vim-maximizer"] = {
  328. loaded = true,
  329. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/vim-maximizer",
  330. url = "https://github.com/szw/vim-maximizer"
  331. },
  332. ["vim-vsnip"] = {
  333. loaded = true,
  334. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/vim-vsnip",
  335. url = "https://github.com/hrsh7th/vim-vsnip"
  336. }
  337. }
  338. time([[Defining packer_plugins]], false)
  339. -- Config for: nvim-autopairs
  340. time([[Config for nvim-autopairs]], true)
  341. try_loadstring("\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0", "config", "nvim-autopairs")
  342. time([[Config for nvim-autopairs]], false)
  343. -- Config for: fidget.nvim
  344. time([[Config for fidget.nvim]], true)
  345. try_loadstring("\27LJ\2\n4\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\25plugin-config.fidget\frequire\0", "config", "fidget.nvim")
  346. time([[Config for fidget.nvim]], false)
  347. -- Config for: Comment.nvim
  348. time([[Config for Comment.nvim]], true)
  349. try_loadstring("\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0", "config", "Comment.nvim")
  350. time([[Config for Comment.nvim]], false)
  351. -- Config for: nvim-notify
  352. time([[Config for nvim-notify]], true)
  353. try_loadstring("\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugin-config.nvim-notify\frequire\0", "config", "nvim-notify")
  354. time([[Config for nvim-notify]], false)
  355. -- Config for: hop.nvim
  356. time([[Config for hop.nvim]], true)
  357. try_loadstring("\27LJ\2\nU\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0B\0\2\1K\0\1\0\1\0\1\tkeys\28etovxqpdygfblzhckisuran\nsetup\bhop\frequire\0", "config", "hop.nvim")
  358. time([[Config for hop.nvim]], false)
  359. -- Config for: nvim-treesitter
  360. time([[Config for nvim-treesitter]], true)
  361. try_loadstring("\27LJ\2\n=\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\"plugin-config.nvim-treesitter\frequire\0", "config", "nvim-treesitter")
  362. time([[Config for nvim-treesitter]], false)
  363. _G._packer.inside_compile = false
  364. if _G._packer.needs_bufread == true then
  365. vim.cmd("doautocmd BufRead")
  366. end
  367. _G._packer.needs_bufread = false
  368. if should_profile then save_profiles() end
  369. end)
  370. if not no_errors then
  371. error_msg = error_msg:gsub('"', '\\"')
  372. vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None')
  373. end