packer_compiled.lua 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  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. ["diffview.nvim"] = {
  113. loaded = true,
  114. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/diffview.nvim",
  115. url = "https://github.com/sindrets/diffview.nvim"
  116. },
  117. ["eslint.nvim"] = {
  118. loaded = true,
  119. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/eslint.nvim",
  120. url = "https://github.com/MunifTanjim/eslint.nvim"
  121. },
  122. ["fidget.nvim"] = {
  123. 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" },
  124. loaded = true,
  125. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/fidget.nvim",
  126. url = "https://github.com/j-hui/fidget.nvim"
  127. },
  128. ["formatter.nvim"] = {
  129. loaded = true,
  130. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/formatter.nvim",
  131. url = "https://github.com/mhartington/formatter.nvim"
  132. },
  133. ["friendly-snippets"] = {
  134. loaded = true,
  135. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/friendly-snippets",
  136. url = "https://github.com/rafamadriz/friendly-snippets"
  137. },
  138. ["gitsigns.nvim"] = {
  139. loaded = true,
  140. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/gitsigns.nvim",
  141. url = "https://github.com/lewis6991/gitsigns.nvim"
  142. },
  143. ["hop.nvim"] = {
  144. 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" },
  145. loaded = true,
  146. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/hop.nvim",
  147. url = "https://github.com/phaazon/hop.nvim"
  148. },
  149. ["inc-rename.nvim"] = {
  150. config = { "\27LJ\2\n8\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\15inc_rename\frequire\0" },
  151. loaded = true,
  152. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/inc-rename.nvim",
  153. url = "https://github.com/smjonas/inc-rename.nvim"
  154. },
  155. ["indent-blankline.nvim"] = {
  156. loaded = true,
  157. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim",
  158. url = "https://github.com/lukas-reineke/indent-blankline.nvim"
  159. },
  160. ["lazygit.nvim"] = {
  161. loaded = true,
  162. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lazygit.nvim",
  163. url = "https://github.com/kdheepak/lazygit.nvim"
  164. },
  165. ["lspkind.nvim"] = {
  166. loaded = true,
  167. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lspkind.nvim",
  168. url = "https://github.com/onsails/lspkind.nvim"
  169. },
  170. ["lspsaga.nvim"] = {
  171. loaded = true,
  172. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lspsaga.nvim",
  173. url = "https://github.com/tami5/lspsaga.nvim"
  174. },
  175. ["lualine.nvim"] = {
  176. loaded = true,
  177. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lualine.nvim",
  178. url = "https://github.com/nvim-lualine/lualine.nvim"
  179. },
  180. ["mason-lspconfig.nvim"] = {
  181. loaded = true,
  182. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/mason-lspconfig.nvim",
  183. url = "https://github.com/williamboman/mason-lspconfig.nvim"
  184. },
  185. ["mason-null-ls.nvim"] = {
  186. loaded = true,
  187. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/mason-null-ls.nvim",
  188. url = "https://github.com/jay-babu/mason-null-ls.nvim"
  189. },
  190. ["mason.nvim"] = {
  191. loaded = true,
  192. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/mason.nvim",
  193. url = "https://github.com/williamboman/mason.nvim"
  194. },
  195. ["mini.nvim"] = {
  196. loaded = true,
  197. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/mini.nvim",
  198. url = "https://github.com/echasnovski/mini.nvim"
  199. },
  200. ["neodev.nvim"] = {
  201. loaded = true,
  202. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/neodev.nvim",
  203. url = "https://github.com/folke/neodev.nvim"
  204. },
  205. ["neoscroll.nvim"] = {
  206. config = { "\27LJ\2\n7\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\28plugin-config.neoscroll\frequire\0" },
  207. loaded = true,
  208. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/neoscroll.nvim",
  209. url = "https://github.com/karb94/neoscroll.nvim"
  210. },
  211. ["noice.nvim"] = {
  212. loaded = true,
  213. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/noice.nvim",
  214. url = "https://github.com/folke/noice.nvim"
  215. },
  216. ["nui.nvim"] = {
  217. loaded = true,
  218. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nui.nvim",
  219. url = "https://github.com/MunifTanjim/nui.nvim"
  220. },
  221. ["null-ls.nvim"] = {
  222. loaded = true,
  223. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/null-ls.nvim",
  224. url = "https://github.com/jose-elias-alvarez/null-ls.nvim"
  225. },
  226. ["numb.nvim"] = {
  227. config = { "\27LJ\2\n2\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\tnumb\frequire\0" },
  228. loaded = true,
  229. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/numb.nvim",
  230. url = "https://github.com/nacro90/numb.nvim"
  231. },
  232. ["nvim-autopairs"] = {
  233. 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" },
  234. loaded = true,
  235. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
  236. url = "https://github.com/windwp/nvim-autopairs"
  237. },
  238. ["nvim-cmp"] = {
  239. loaded = true,
  240. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-cmp",
  241. url = "https://github.com/hrsh7th/nvim-cmp"
  242. },
  243. ["nvim-code-action-menu"] = {
  244. commands = { "CodeActionMenu" },
  245. loaded = false,
  246. needs_bufread = true,
  247. only_cond = false,
  248. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/opt/nvim-code-action-menu",
  249. url = "https://github.com/weilbith/nvim-code-action-menu"
  250. },
  251. ["nvim-colorizer.lua"] = {
  252. loaded = true,
  253. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-colorizer.lua",
  254. url = "https://github.com/norcalli/nvim-colorizer.lua"
  255. },
  256. ["nvim-lsp-ts-utils"] = {
  257. loaded = true,
  258. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-lsp-ts-utils",
  259. url = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils"
  260. },
  261. ["nvim-lspconfig"] = {
  262. loaded = true,
  263. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-lspconfig",
  264. url = "https://github.com/neovim/nvim-lspconfig"
  265. },
  266. ["nvim-notify"] = {
  267. 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" },
  268. loaded = true,
  269. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-notify",
  270. url = "https://github.com/rcarriga/nvim-notify"
  271. },
  272. ["nvim-tree-docs"] = {
  273. loaded = true,
  274. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-tree-docs",
  275. url = "https://github.com/nvim-treesitter/nvim-tree-docs"
  276. },
  277. ["nvim-tree.lua"] = {
  278. loaded = true,
  279. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-tree.lua",
  280. url = "https://github.com/kyazdani42/nvim-tree.lua"
  281. },
  282. ["nvim-treesitter"] = {
  283. 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" },
  284. loaded = true,
  285. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
  286. url = "https://github.com/nvim-treesitter/nvim-treesitter"
  287. },
  288. ["nvim-treesitter-refactor"] = {
  289. loaded = true,
  290. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-treesitter-refactor",
  291. url = "https://github.com/nvim-treesitter/nvim-treesitter-refactor"
  292. },
  293. ["nvim-treesitter-textobjects"] = {
  294. loaded = true,
  295. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-treesitter-textobjects",
  296. url = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects"
  297. },
  298. ["nvim-ts-autotag"] = {
  299. loaded = true,
  300. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-ts-autotag",
  301. url = "https://github.com/windwp/nvim-ts-autotag"
  302. },
  303. ["nvim-ts-context-commentstring"] = {
  304. loaded = true,
  305. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-ts-context-commentstring",
  306. url = "https://github.com/JoosepAlviste/nvim-ts-context-commentstring"
  307. },
  308. ["nvim-ts-rainbow"] = {
  309. loaded = true,
  310. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-ts-rainbow",
  311. url = "https://github.com/p00f/nvim-ts-rainbow"
  312. },
  313. ["nvim-web-devicons"] = {
  314. loaded = true,
  315. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
  316. url = "https://github.com/nvim-tree/nvim-web-devicons"
  317. },
  318. ["packer.nvim"] = {
  319. loaded = true,
  320. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/packer.nvim",
  321. url = "https://github.com/wbthomason/packer.nvim"
  322. },
  323. ["plenary.nvim"] = {
  324. loaded = true,
  325. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/plenary.nvim",
  326. url = "https://github.com/nvim-lua/plenary.nvim"
  327. },
  328. ["prettier.nvim"] = {
  329. loaded = true,
  330. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/prettier.nvim",
  331. url = "https://github.com/MunifTanjim/prettier.nvim"
  332. },
  333. ["project.nvim"] = {
  334. loaded = true,
  335. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/project.nvim",
  336. url = "https://github.com/ahmedkhalf/project.nvim"
  337. },
  338. ["rust-tools.nvim"] = {
  339. loaded = true,
  340. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/rust-tools.nvim",
  341. url = "https://github.com/simrat39/rust-tools.nvim"
  342. },
  343. ["schemastore.nvim"] = {
  344. loaded = true,
  345. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/schemastore.nvim",
  346. url = "https://github.com/b0o/schemastore.nvim"
  347. },
  348. ["telescope.nvim"] = {
  349. loaded = true,
  350. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/telescope.nvim",
  351. url = "https://github.com/nvim-telescope/telescope.nvim"
  352. },
  353. ["tokyonight.nvim"] = {
  354. loaded = true,
  355. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/tokyonight.nvim",
  356. url = "https://github.com/folke/tokyonight.nvim"
  357. },
  358. ["trouble.nvim"] = {
  359. loaded = true,
  360. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/trouble.nvim",
  361. url = "https://github.com/folke/trouble.nvim"
  362. },
  363. ["typescript.nvim"] = {
  364. loaded = true,
  365. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/typescript.nvim",
  366. url = "https://github.com/jose-elias-alvarez/typescript.nvim"
  367. },
  368. ["vim-floaterm"] = {
  369. loaded = true,
  370. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/vim-floaterm",
  371. url = "https://github.com/voldikss/vim-floaterm"
  372. },
  373. ["vim-matchtag"] = {
  374. loaded = true,
  375. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/vim-matchtag",
  376. url = "https://github.com/leafOfTree/vim-matchtag"
  377. },
  378. ["vim-maximizer"] = {
  379. loaded = true,
  380. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/vim-maximizer",
  381. url = "https://github.com/szw/vim-maximizer"
  382. },
  383. ["vim-vsnip"] = {
  384. loaded = true,
  385. path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/vim-vsnip",
  386. url = "https://github.com/hrsh7th/vim-vsnip"
  387. }
  388. }
  389. time([[Defining packer_plugins]], false)
  390. -- Config for: Comment.nvim
  391. time([[Config for Comment.nvim]], true)
  392. 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")
  393. time([[Config for Comment.nvim]], false)
  394. -- Config for: nvim-treesitter
  395. time([[Config for nvim-treesitter]], true)
  396. 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")
  397. time([[Config for nvim-treesitter]], false)
  398. -- Config for: hop.nvim
  399. time([[Config for hop.nvim]], true)
  400. 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")
  401. time([[Config for hop.nvim]], false)
  402. -- Config for: numb.nvim
  403. time([[Config for numb.nvim]], true)
  404. try_loadstring("\27LJ\2\n2\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\tnumb\frequire\0", "config", "numb.nvim")
  405. time([[Config for numb.nvim]], false)
  406. -- Config for: fidget.nvim
  407. time([[Config for fidget.nvim]], true)
  408. 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")
  409. time([[Config for fidget.nvim]], false)
  410. -- Config for: inc-rename.nvim
  411. time([[Config for inc-rename.nvim]], true)
  412. try_loadstring("\27LJ\2\n8\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\15inc_rename\frequire\0", "config", "inc-rename.nvim")
  413. time([[Config for inc-rename.nvim]], false)
  414. -- Config for: neoscroll.nvim
  415. time([[Config for neoscroll.nvim]], true)
  416. try_loadstring("\27LJ\2\n7\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\28plugin-config.neoscroll\frequire\0", "config", "neoscroll.nvim")
  417. time([[Config for neoscroll.nvim]], false)
  418. -- Config for: nvim-autopairs
  419. time([[Config for nvim-autopairs]], true)
  420. 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")
  421. time([[Config for nvim-autopairs]], false)
  422. -- Config for: nvim-notify
  423. time([[Config for nvim-notify]], true)
  424. 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")
  425. time([[Config for nvim-notify]], false)
  426. -- Command lazy-loads
  427. time([[Defining lazy-load commands]], true)
  428. pcall(vim.api.nvim_create_user_command, 'CodeActionMenu', function(cmdargs)
  429. require('packer.load')({'nvim-code-action-menu'}, { cmd = 'CodeActionMenu', l1 = cmdargs.line1, l2 = cmdargs.line2, bang = cmdargs.bang, args = cmdargs.args, mods = cmdargs.mods }, _G.packer_plugins)
  430. end,
  431. {nargs = '*', range = true, bang = true, complete = function()
  432. require('packer.load')({'nvim-code-action-menu'}, {}, _G.packer_plugins)
  433. return vim.fn.getcompletion('CodeActionMenu ', 'cmdline')
  434. end})
  435. time([[Defining lazy-load commands]], false)
  436. _G._packer.inside_compile = false
  437. if _G._packer.needs_bufread == true then
  438. vim.cmd("doautocmd BufRead")
  439. end
  440. _G._packer.needs_bufread = false
  441. if should_profile then save_profiles() end
  442. end)
  443. if not no_errors then
  444. error_msg = error_msg:gsub('"', '\\"')
  445. vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None')
  446. end