wbthomason / packer.nvim

A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config
MIT License
7.83k stars 266 forks source link

Sequencing missing `packer_plugins[plugin].url` #868

Closed axieax closed 1 year ago

axieax commented 2 years ago

Steps to reproduce

Set up Packer with a config like the following:

use({
  plugin_a,
  after = plugin_b,
})

use(plugin_b)

Actual behaviour

packer_plugins[plugin_a].url == "https://github.com/" .. plugin_a
packer_plugins[plugin_b].url == nil

Note: this behaviour can also be seen in the attached packer_compiled.lua file, specifically with my sequenced plugins "nvim-hlslens", "telescope.nvim" and "onedarkpro.nvim".

Expected behaviour

packer_plugins[plugin_a].url == "https://github.com/" .. plugin_a
packer_plugins[plugin_b].url == "https://github.com/" .. plugin_b

packer files

Plugin specification file(s) Post or link your plugin specification files here, if you aren't able to provide a minimal reproducer For example with [my config](https://github.com/axieax/dotconfig/blob/main/nvim/lua/axie/plugins/init.lua), the sequenced plugins "nvim-hlslens", "telescope.nvim" and "onedarkpro.nvim" are missing the `url` key in `packer_plugins[plugin_name]`.
packer log file Post the contents of ~/.cache/nvim/packer.nvim.log here [nothing-relevant](https://www.toptal.com/developers/hastebin/yozucawovo.sql)
packer compiled file Post the contents of `packer_compiled.vim` here ```lua -- Automatically generated packer.nvim plugin loader code if vim.api.nvim_call_function('has', {'nvim-0.5'}) ~= 1 then vim.api.nvim_command('echohl WarningMsg | echom "Invalid Neovim version for packer.nvim! | echohl None"') return end vim.api.nvim_command('packadd packer.nvim') local no_errors, error_msg = pcall(function() local time local profile_info local should_profile = true if should_profile then local hrtime = vim.loop.hrtime profile_info = {} time = function(chunk, start) if start then profile_info[chunk] = hrtime() else profile_info[chunk] = (hrtime() - profile_info[chunk]) / 1e6 end end else time = function(chunk, start) end end local function save_profiles(threshold) local sorted_times = {} for chunk_name, time_taken in pairs(profile_info) do sorted_times[#sorted_times + 1] = {chunk_name, time_taken} end table.sort(sorted_times, function(a, b) return a[2] > b[2] end) local results = {} for i, elem in ipairs(sorted_times) do if not threshold or threshold and elem[2] > threshold then results[i] = elem[1] .. ' took ' .. elem[2] .. 'ms' end end _G._packer = _G._packer or {} _G._packer.profile_output = results end time([[Luarocks path setup]], true) local package_path_str = "/home/axie/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/home/axie/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/home/axie/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/home/axie/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua" local install_cpath_pattern = "/home/axie/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so" if not string.find(package.path, package_path_str, 1, true) then package.path = package.path .. ';' .. package_path_str end if not string.find(package.cpath, install_cpath_pattern, 1, true) then package.cpath = package.cpath .. ';' .. install_cpath_pattern end time([[Luarocks path setup]], false) time([[try_loadstring definition]], true) local function try_loadstring(s, component, name) local success, result = pcall(loadstring(s), name, _G.packer_plugins[name]) if not success then vim.schedule(function() vim.api.nvim_notify('packer.nvim: Error running ' .. component .. ' for ' .. name .. ': ' .. result, vim.log.levels.ERROR, {}) end) end return result end time([[try_loadstring definition]], false) time([[Defining packer_plugins]], true) _G.packer_plugins = { ["Comment.nvim"] = { config = { "\27LJ\2\n§\3\0\1\b\0\18\00006\1\0\0'\3\1\0B\1\2\2+\2\0\0009\3\2\0009\4\2\0019\4\3\4\5\3\4\0X\3\a€6\3\0\0'\5\4\0B\3\2\0029\3\5\3B\3\1\2\18\2\3\0X\3\16€9\3\6\0009\4\6\0019\4\a\4\4\3\4\0X\3\5€9\3\6\0009\4\6\0019\4\b\4\5\3\4\0X\3\6€6\3\0\0'\5\4\0B\3\2\0029\3\t\3B\3\1\2\18\2\3\0006\3\0\0'\5\n\0B\3\2\0029\3\v\0035\5\14\0009\6\2\0009\a\2\0019\a\f\a\5\6\a\0X\6\2€'\6\r\0X\a\1€'\6\15\0=\6\16\5=\2\17\5D\3\2\0\rlocation\bkey\16__multiline\1\0\0\14__default\tline\28calculate_commentstring&ts_context_commentstring.internal\30get_visual_start_location\6V\6v\fcmotion\24get_cursor_location#ts_context_commentstring.utils\nblock\nctype\18Comment.utils\frequirel\1\0\4\0\b\0\v6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0023\3\6\0=\3\a\2B\0\2\1K\0\1\0\rpre_hook\0\rmappings\1\0\0\1\0\1\rextended\2\nsetup\fComment\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/Comment.nvim", url = "https://github.com/numToStr/Comment.nvim" }, ["DAPInstall.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/DAPInstall.nvim", url = "https://github.com/Pocco81/DAPInstall.nvim" }, ["FixCursorHold.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/FixCursorHold.nvim", url = "https://github.com/antoinemadec/FixCursorHold.nvim" }, LuaSnip = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/LuaSnip", url = "https://github.com/L3MON4D3/LuaSnip" }, ["aerial.nvim"] = { config = { "\27LJ\2\n¿\1\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0=\3\5\2B\0\2\1K\0\1\0\vguides\1\0\2\14last_item\t└ \rmid_item\t│ \1\0\5\16show_guides\2\17manage_folds\1\20close_on_select\2\22highlight_on_jump\3È\1\23highlight_on_hover\2\nsetup\vaerial\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/aerial.nvim", url = "https://github.com/stevearc/aerial.nvim" }, ["alpha-nvim"] = { config = { "\27LJ\2\nÂ\r\0\0\v\0005\1k6\0\0\0'\2\1\0B\0\2\0029\1\2\0009\1\3\0015\2\5\0=\2\4\0019\1\2\0009\1\6\0014\2\f\0009\3\a\0'\5\b\0'\6\t\0'\a\n\0B\3\4\2>\3\1\0029\3\a\0'\5\v\0'\6\f\0'\a\r\0B\3\4\2>\3\2\0029\3\a\0'\5\14\0'\6\15\0'\a\16\0B\3\4\2>\3\3\0029\3\a\0'\5\17\0'\6\18\0'\a\19\0B\3\4\2>\3\4\0029\3\a\0'\5\20\0'\6\21\0'\a\22\0B\3\4\2>\3\5\0029\3\a\0'\5\23\0'\6\24\0'\a\25\0B\3\4\2>\3\6\0029\3\a\0'\5\26\0'\6\27\0'\a\28\0B\3\4\2>\3\a\0029\3\a\0'\5\29\0'\6\30\0'\a\31\0B\3\4\2>\3\b\0029\3\a\0'\5 \0'\6!\0'\a\"\0B\3\4\2>\3\t\0029\3\a\0'\5#\0'\6$\0'\a%\0B\3\4\2>\3\n\0029\3\a\0'\5&\0'\6'\0'\a(\0B\3\4\0?\3\0\0=\2\4\0016\1\0\0'\3)\0B\1\2\0029\1*\1\18\2\1\0'\4+\0B\2\2\2\21\2\2\0\18\3\1\0'\5,\0B\3\2\2\21\3\3\0009\4\2\0009\4-\0045\0051\0006\6.\0009\6/\6'\b0\0 \t\3\2\18\n\2\0B\6\4\2>\6\1\5=\5\4\0046\4\0\0'\0062\0B\4\2\0029\0043\0049\0064\0B\4\2\1K\0\1\0\vconfig\nsetup\nalpha\1\3\0\0\0$ https://github.com/axieax/!  %d plugins (%d loaded)\vformat\vstring\vfooter/~/.local/share/nvim/site/pack/packer/opt/*1~/.local/share/nvim/site/pack/packer/start/*\15glob_split\15axie.utils\16qa\21⏻ Quit Neovim\6q\24PackerSync\24 Update Plugins\6u3e ~/.config/nvim/lua/plugins/init.lua\22﫸 Neovim Config\6c)SessionManager load_session\23 Find Sessions\6S.SessionManager load_last_session\25 Restore Session\6s Telescope projects\23 Find Projects\6p Telescope oldfiles\22 Recent Files\6o\29Telescope marks\19 Bookmarks\6b!Telescope live_grep\19 Live Grep\6g?lua require'axie.plugins.telescope'.file_search()\20 Find Files\6f#ene startinsert\18 New File\6n\vbutton\fbuttons\1\t\0\0: _____ ____ ___.______________ _____ ____ ___: / _ \\ \\ \\/ /| \\_ _____/ / _ \\ \\ \\/ /: / /_\\ \\ \\ / | || __)_ / /_\\ \\ \\ / :/ | \\/ \\ | || \\/ | \\/ \\ :\\____|__ /___/\\ \\|___/_______ /\\____|__ /___/\\ \\: \\/ \\_/ \\/ \\/ \\_/: : > Press [s] to restore your last session < \bval\vheader\fsection\27alpha.themes.dashboard\frequire\23€€À™\4\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/alpha-nvim", url = "https://github.com/goolord/alpha-nvim" }, ["barbar.nvim"] = { config = { "\27LJ\2\n¤\v\0\0\4\0\31\0O6\0\0\0'\2\1\0B\0\2\0029\0\2\0\18\1\0\0005\3\3\0B\1\2\1\18\1\0\0005\3\4\0B\1\2\1\18\1\0\0005\3\5\0B\1\2\1\18\1\0\0005\3\6\0B\1\2\1\18\1\0\0005\3\a\0B\1\2\1\18\1\0\0005\3\b\0B\1\2\1\18\1\0\0005\3\t\0B\1\2\1\18\1\0\0005\3\n\0B\1\2\1\18\1\0\0005\3\v\0B\1\2\1\18\1\0\0005\3\f\0B\1\2\1\18\1\0\0005\3\r\0B\1\2\1\18\1\0\0005\3\14\0B\1\2\1\18\1\0\0005\3\15\0B\1\2\1\18\1\0\0005\3\16\0B\1\2\1\18\1\0\0005\3\17\0B\1\2\1\18\1\0\0005\3\18\0B\1\2\1\18\1\0\0005\3\19\0B\1\2\1\18\1\0\0005\3\20\0B\1\2\1\18\1\0\0005\3\21\0B\1\2\1\18\1\0\0005\3\22\0B\1\2\1\18\1\0\0005\3\23\0B\1\2\1\18\1\0\0005\3\24\0B\1\2\0016\1\25\0009\1\26\0015\2\28\0004\3\0\0=\3\29\0024\3\0\0=\3\30\2=\2\27\1K\0\1\0\17exclude_name\15exclude_ft\1\0\17\rclosable\2\rtabpages\2\14auto_hide\1\14animation\2\fletters:asdfjkl;ghnmxcvbziowerutyqpASDFJKLGHNMXCVBZIOWERUTYQP\21semantic_letters\2\19maximum_length\3\30\20maximum_padding\3\1\18insert_at_end\1\16icon_pinned\b車\28icon_close_tab_modified\b●\19icon_close_tab\b\28icon_separator_inactive\b▎\26icon_separator_active\b▎\23icon_custom_colors\1\nicons\2\14clickable\2\15bufferline\6g\bvim\1\4\0\0\6n\15bw#:BufferOrderByWindowNumber\1\4\0\0\6n\15bl\31:BufferOrderByLanguage\1\4\0\0\6n\15bd :BufferOrderByDirectory\1\4\0\0\6n\15bb#:BufferOrderByBufferNumber\1\4\0\0\6n\n\24:BufferMoveNext\1\4\0\0\6n\n\28:BufferMovePrevious\1\4\0\0\6n\n\20:BufferLast\1\4\0\0\6n\n\22:BufferGoto 9\1\4\0\0\6n\n\22:BufferGoto 8\1\4\0\0\6n\n\22:BufferGoto 7\1\4\0\0\6n\n\22:BufferGoto 6\1\4\0\0\6n\n\22:BufferGoto 5\1\4\0\0\6n\n\22:BufferGoto 4\1\4\0\0\6n\n\22:BufferGoto 3\1\4\0\0\6n\n\22:BufferGoto 2\1\4\0\0\6n\n\22:BufferGoto 1\1\4\0\0\6n\n\20:BufferPick\1\4\0\0\6n\n\19:BufferPin\1\4\0\0\6n\n\22:BufferClose!\1\4\0\0\6n\n\21:BufferClose\1\4\0\0\6n\f\24:BufferPrevious\1\4\0\0\6n\n\20:BufferNext\bmap\15axie.utils\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/barbar.nvim", url = "https://github.com/romgrk/barbar.nvim" }, ["better-escape.nvim"] = { config = { "\27LJ\2\n\\\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\fmapping\1\0\0\1\3\0\0\ajk\akj\nsetup\18better_escape\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/better-escape.nvim", url = "https://github.com/max397574/better-escape.nvim" }, ["bullets.vim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/bullets.vim", url = "https://github.com/dkarter/bullets.vim" }, catppuccin = { config = { "\27LJ\2\n\a\0\0\a\0&\00056\0\0\0'\2\1\0B\0\2\0029\1\2\0005\3\3\0005\4\4\0005\5\5\0=\5\6\0045\5\a\0=\5\b\4=\4\t\3B\1\2\0016\1\0\0'\3\n\0B\1\2\0029\1\v\1B\1\1\0029\2\f\0005\4\16\0005\5\14\0009\6\r\1=\6\15\5=\5\17\0045\5\18\0=\5\19\0045\5\21\0009\6\20\1=\6\22\5=\5\23\0045\5\24\0=\5\25\0045\5\27\0009\6\26\1=\6\22\5=\5\28\0045\5\29\0009\6\26\1=\6\22\5=\5\30\0045\5\31\0009\6\26\1=\6\22\5=\5 \0045\5!\0009\6\26\1=\6\22\5=\5\"\4B\2\2\0016\2#\0009\2$\2'\4%\0B\2\2\1K\0\1\0\27colorscheme catppuccin\bcmd\bvim\14SpellRare\1\0\1\nstyle\21italic,undercurl\15SpellLocal\1\0\1\nstyle\21italic,undercurl\rSpellCap\1\0\1\nstyle\21italic,undercurl\rSpellBad\1\0\1\nstyle\21italic,undercurl\bred\18WhichKeyFloat\1\0\1\tlink\16NormalFloat\17CursorLineNr\afg\1\0\0\fmagenta\16ColorColumn\1\0\1\tlink\15CursorLine\16NormalFloat\1\0\0\abg\1\0\0\vblack2\nremap\15get_colors\26catppuccin.api.colors\17integrations\21indent_blankline\1\0\2\fenabled\2\26colored_indent_levels\1\fneotree\1\0\3\fenabled\2\22transparent_panel\2\14show_root\1\1\0\19\rmarkdown\2\15bufferline\2\rgitsigns\2\14gitgutter\1\rlsp_saga\2\16lsp_trouble\2\vnotify\2\bcmp\2\14telescope\2\15telekasten\2\bhop\2\15ts_rainbow\2\15lightspeed\2\vbarbar\2\tfern\2\14vim_sneak\2\vneogit\2\14dashboard\2\14which_key\2\1\0\1\27transparent_background\2\nsetup\15catppuccin\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/catppuccin", url = "https://github.com/catppuccin/nvim" }, ["clipboard-image.nvim"] = { commands = { "PasteImg" }, config = { "\27LJ\2\nÊ\1\0\0\a\0\f\0\0236\0\0\0009\0\1\0009\0\2\0B\0\1\0016\0\0\0009\0\1\0009\0\3\0'\2\4\0B\0\2\0026\1\0\0009\1\1\0019\1\5\1B\1\1\0016\1\6\0'\3\a\0B\1\2\0029\1\b\1\18\3\0\0006\4\t\0009\4\n\4'\6\v\0B\4\2\0C\1\1\0\22%Y-%m-%d-%H-%M-%S\tdate\aos\rfallback\15axie.utils\frequire\17inputrestore\17Image Name: \ninput\14inputsave\afn\bvim†\2\1\0\b\0\18\0\0276\0\0\0009\0\1\0009\0\2\0006\2\0\0009\2\1\0029\2\3\2'\4\4\0B\2\2\2'\3\5\0B\0\3\0023\1\6\0006\2\a\0'\4\b\0B\2\2\0029\2\t\0025\4\f\0005\5\n\0=\1\v\5=\5\r\0045\5\15\0\18\6\0\0'\a\14\0&\6\a\6=\6\16\5=\5\17\4B\2\2\1K\0\1\0\rmarkdown\fimg_dir\1\0\0\f/images\fdefault\1\0\0\rimg_name\1\0\2\fimg_dir\vimages\16img_dir_txt\vimages\nsetup\20clipboard-image\frequire\0\a:h\6%\vexpand\16fnamemodify\afn\bvim\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/clipboard-image.nvim", url = "https://github.com/ekickx/clipboard-image.nvim" }, ["cmp-buffer"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-buffer", url = "https://github.com/hrsh7th/cmp-buffer" }, ["cmp-calc"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-calc", url = "https://github.com/hrsh7th/cmp-calc" }, ["cmp-cmdline"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-cmdline", url = "https://github.com/hrsh7th/cmp-cmdline" }, ["cmp-emoji"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-emoji", url = "https://github.com/hrsh7th/cmp-emoji" }, ["cmp-git"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-git", url = "https://github.com/petertriho/cmp-git" }, ["cmp-latex-symbols"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-latex-symbols", url = "https://github.com/kdheepak/cmp-latex-symbols" }, ["cmp-npm"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-npm", url = "https://github.com/David-Kunz/cmp-npm" }, ["cmp-nvim-lsp"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp", url = "https://github.com/hrsh7th/cmp-nvim-lsp" }, ["cmp-nvim-lua"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-nvim-lua", url = "https://github.com/hrsh7th/cmp-nvim-lua" }, ["cmp-path"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-path", url = "https://github.com/hrsh7th/cmp-path" }, ["cmp-spell"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-spell", url = "https://github.com/f3fora/cmp-spell" }, ["cmp-under-comparator"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-under-comparator", url = "https://github.com/lukas-reineke/cmp-under-comparator" }, ["cmp-vsnip"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/cmp-vsnip", url = "https://github.com/hrsh7th/cmp-vsnip" }, ["codi.vim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/codi.vim", url = "https://github.com/metakirby5/codi.vim" }, ["copilot.vim"] = { config = { "\27LJ\2\nÚ\1\0\0\4\0\b\0\0156\0\0\0'\2\1\0B\0\2\0029\0\2\0\18\1\0\0005\3\3\0B\1\2\1\18\1\0\0005\3\4\0B\1\2\0016\1\5\0009\1\6\1+\2\2\0=\2\a\1K\0\1\0\23copilot_no_tab_map\6g\bvim\1\4\3\0\6i\n\22copilot#Dismiss()\vscript\2\texpr\2\vsilent\2\1\4\3\0\6i\n\21copilot#Accept()\vscript\2\texpr\2\vsilent\2\bmap\15axie.utils\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/copilot.vim", url = "https://github.com/github/copilot.vim" }, ["dial.nvim"] = { config = { "\27LJ\2\n­\n\0\0\n\0002\1‹\0016\0\0\0'\2\1\0B\0\2\0026\1\0\0'\3\2\0B\1\2\0029\1\3\1\18\3\1\0009\1\4\0015\4(\0004\5\19\0009\6\5\0009\6\6\0069\6\a\6>\6\1\0059\6\5\0009\6\6\0069\6\b\6>\6\2\0059\6\5\0009\6\6\0069\6\t\6>\6\3\0059\6\5\0009\6\6\0069\6\n\6>\6\4\0059\6\v\0009\6\f\0064\b\0\0B\6\2\2>\6\5\0059\6\r\0009\6\6\0069\6\r\6>\6\6\0059\6\14\0009\6\6\0069\6\15\6>\6\a\0059\6\16\0009\6\6\0069\6\17\6>\6\b\0059\6\18\0009\6\f\0065\b\20\0005\t\19\0=\t\21\bB\6\2\2>\6\t\0059\6\18\0009\6\f\0065\b\23\0005\t\22\0=\t\21\bB\6\2\2>\6\n\0059\6\18\0009\6\f\0065\b\25\0005\t\24\0=\t\21\bB\6\2\2>\6\v\0059\6\18\0009\6\f\0065\b\27\0005\t\26\0=\t\21\bB\6\2\2>\6\f\0059\6\18\0009\6\f\0065\b\29\0005\t\28\0=\t\21\bB\6\2\2>\6\r\0059\6\18\0009\6\f\0065\b\31\0005\t\30\0=\t\21\bB\6\2\2>\6\14\0059\6\18\0009\6\f\0065\b!\0005\t \0=\t\21\bB\6\2\2>\6\15\0059\6\18\0009\6\f\0065\b#\0005\t\"\0=\t\21\bB\6\2\2>\6\16\0059\6\18\0009\6\f\0065\b%\0005\t$\0=\t\21\bB\6\2\2>\6\17\0059\6\18\0009\6\f\0065\b'\0005\t&\0=\t\21\bB\6\2\0?\6\0\0=\5)\4B\1\3\0016\1\0\0'\3*\0B\1\2\0029\1+\1\18\2\1\0005\4,\0B\2\2\1\18\2\1\0005\4-\0B\2\2\1\18\2\1\0005\4.\0B\2\2\1\18\2\1\0005\4/\0B\2\2\1\18\2\1\0005\0040\0B\2\2\1\18\2\1\0005\0041\0B\2\2\1K\0\1\0\1\4\1\0\6v\vg\28g(dial-decrement)\fnoremap\1\1\4\1\0\6v\vg\28g(dial-increment)\fnoremap\1\1\4\1\0\6v\n\27(dial-decrement)\fnoremap\1\1\4\1\0\6v\n\27(dial-increment)\fnoremap\1\1\4\1\0\6n\n\27(dial-decrement)\fnoremap\1\1\4\1\0\6n\n\27(dial-increment)\fnoremap\1\bmap\15axie.utils\fdefault\1\0\0\1\0\2\tword\1\vcyclic\2\1\3\0\0\a++\a--\1\0\2\tword\1\vcyclic\2\1\a\0\0\a+=\a-=\a*=\a/=\b//=\a%=\1\0\2\tword\1\vcyclic\2\1\3\0\0\a>=\a<=\1\0\2\tword\1\vcyclic\2\1\3\0\0\b===\b!==\1\0\2\tword\1\vcyclic\2\1\3\0\0\a==\a!=\1\0\2\tword\1\vcyclic\2\1\3\0\0\6>\6<\1\0\2\tword\1\vcyclic\2\1\3\0\0\a&&\a||\1\0\2\tword\2\vcyclic\2\1\3\0\0\band\aor\1\0\2\tword\2\vcyclic\2\1\3\0\0\tTrue\nFalse\relements\1\0\2\tword\2\vcyclic\2\1\3\0\0\ttrue\nfalse\rconstant\20markdown_header\tmisc\r%H:%M:%S\tdate\vsemver\bnew\rhexcolor\vbinary\noctal\bhex\fdecimal\nalias\finteger\19register_group\faugends\16dial.config\16dial.augend\frequire%€€À™\4\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/dial.nvim", url = "https://github.com/monaqa/dial.nvim" }, ["diffview.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/diffview.nvim", url = "https://github.com/sindrets/diffview.nvim" }, ["dim.lua"] = { config = { "\27LJ\2\n1\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\bdim\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/dim.lua", url = "https://github.com/narutoxy/dim.lua" }, ["distant.nvim"] = { config = { "\27LJ\2\nt\0\0\6\0\a\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\5\0006\3\0\0'\5\3\0B\3\2\0029\3\4\3B\3\1\2=\3\6\2B\0\2\1K\0\1\0\6*\1\0\0\17chip_default\21distant.settings\nsetup\fdistant\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/distant.nvim", url = "https://github.com/chipsenkbeil/distant.nvim" }, ["dracula.nvim"] = { config = { "\27LJ\2\n8\0\0\2\0\3\0\0056\0\0\0009\0\1\0+\1\2\0=\1\2\0K\0\1\0\27dracula_transparent_bg\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/dracula.nvim", url = "https://github.com/Mofiqul/dracula.nvim" }, ["dressing.nvim"] = { config = { "\27LJ\2\nm\0\0\4\0\6\0\v6\0\0\0009\0\1\0009\0\2\0)\2\0\0'\3\3\0B\0\3\2\a\0\4\0X\0\2€5\0\5\0L\0\2\0K\0\1\0\1\0\1\fenabled\1\rneo-tree\rfiletype\24nvim_buf_get_option\bapi\bvim«\1\0\1\v\0\r\0\22:\1\2\0009\1\0\1\18\3\1\0009\1\1\1'\4\2\0'\5\3\0B\1\4\0026\2\4\0009\2\5\0029\2\6\2:\4\1\0B\2\2\0026\3\a\0009\3\b\3'\5\t\0\18\b\1\0009\6\1\1'\t\n\0'\n\v\0B\6\4\0029\a\f\2D\3\4\0\tname\a\\n\6\n\f%s\t[%s]\vformat\vstring\21get_client_by_id\blsp\bvim\t\\r\\n\a\r\n\tgsub\ntitle¨\1\1\0\6\0\14\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\6\0005\3\4\0003\4\3\0=\4\5\3=\3\a\0025\3\v\0005\4\t\0003\5\b\0=\5\n\4=\4\f\3=\3\r\2B\0\2\1K\0\1\0\vselect\25format_item_override\1\0\0\15codeaction\1\0\0\0\ninput\1\0\0\15get_config\1\0\0\0\nsetup\rdressing\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/dressing.nvim", url = "https://github.com/stevearc/dressing.nvim" }, ["fidget.nvim"] = { config = { "\27LJ\2\ne\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\vwindow\1\0\0\1\0\2\rrelative\veditor\nblend\3\0\nsetup\vfidget\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/fidget.nvim", url = "https://github.com/j-hui/fidget.nvim" }, firenvim = { config = { "\27LJ\2\nÌ\1\0\0\4\0\n\0\r6\0\0\0009\0\1\0005\1\6\0005\2\4\0005\3\3\0=\3\5\2=\2\a\1=\1\2\0006\0\0\0009\0\b\0'\2\t\0B\0\2\1K\0\1\0007au BufEnter github.com_*.txt set filetype=markdown\bcmd\18localSettings\1\0\0\a.*\1\0\0\1\0\3\tsync\vchange\fcmdline\vneovim\rtakeover\nnever\20firenvim_config\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/firenvim", url = "https://github.com/glacambre/firenvim" }, ["focus.nvim"] = { config = { "\27LJ\2\nØ\1\0\0\a\0\f\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0006\4\5\0006\6\6\0009\6\a\0069\6\b\6B\4\2\2=\4\t\3=\3\b\0025\3\n\0=\3\v\2B\0\2\1K\0\1\0\23excluded_filetypes\1\4\0\0\15toggleterm\aqf\thelp\nwidth\16colorcolumn\6o\bvim\rtonumber\1\0\1\venable\2\1\0\3\15cursorline\1\vnumber\1\15signcolumn\1\nsetup\nfocus\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/focus.nvim", url = "https://github.com/beauwilliams/focus.nvim" }, ["friendly-snippets"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/friendly-snippets", url = "https://github.com/rafamadriz/friendly-snippets" }, ["galaxyline.nvim"] = { config = { "\27LJ\2\n‘\b\0\0\t\0$\4ƒ\0016\0\0\0'\2\1\0B\0\2\0026\1\0\0'\3\2\0B\1\2\0029\1\3\0016\2\0\0'\4\2\0B\2\2\0029\2\4\0025\3\14\0004\4\t\0\18\5\1\0'\a\6\0B\5\2\2>\5\1\4\18\5\1\0'\a\a\0B\5\2\2>\5\2\4\18\5\1\0'\a\b\0B\5\2\2>\5\3\4\18\5\1\0'\a\t\0B\5\2\2>\5\4\4\18\5\1\0'\a\n\0B\5\2\2>\5\5\4\18\5\1\0'\a\v\0B\5\2\2>\5\6\4\18\5\1\0'\a\f\0B\5\2\2>\5\a\4\18\5\1\0'\a\r\0B\5\2\0?\5\0\0=\4\15\0034\4\5\0\18\5\1\0'\a\16\0B\5\2\2>\5\1\4\18\5\1\0'\a\17\0B\5\2\2>\5\2\4\18\5\1\0'\a\18\0B\5\2\2>\5\3\4\18\5\1\0'\a\19\0B\5\2\0?\5\1\0=\4\20\0034\4\a\0\18\5\1\0'\a\21\0B\5\2\2>\5\1\4\18\5\1\0'\a\22\0B\5\2\2>\5\2\4\18\5\1\0'\a\23\0B\5\2\2>\5\3\4\18\5\1\0'\a\24\0B\5\2\2>\5\4\4\18\5\1\0'\a\25\0B\5\2\2>\5\5\4\18\5\1\0'\a\6\0B\5\2\0?\5\2\0=\4\26\0034\4\3\0\18\5\1\0'\a\6\0B\5\2\0?\5\3\0=\4\27\0034\4\5\0\18\5\1\0'\a\a\0B\5\2\2>\5\1\4\18\5\1\0'\a\28\0\18\b\2\0B\5\3\2>\5\2\4\18\5\1\0'\a\t\0\18\b\2\0B\5\3\2>\5\3\4\18\5\1\0'\a\b\0\18\b\2\0B\5\3\0?\5\1\0=\4\29\0034\4\3\0\18\5\1\0'\a\6\0B\5\2\0?\5\3\0=\4\30\3=\3\5\0005\3 \0=\3\31\0006\3!\0009\3\"\3'\5#\0B\3\2\1K\0\1\0(hi GalaxyLineFillSection guibg=NONE\bcmd\bvim\1\n\0\0\aqf\rNvimTree\rneo-tree\vaerial\nMundo\fTrouble\15toggleterm\nalpha\fminimap\20short_line_list\21short_line_right\19short_line_mid\fDivider\20short_line_left\nright\15LineColumn\14WordCount\15FileFormat\14LspClient\rFileIcon\bmid\19DiagnosticInfo\19DiagnosticHint\19DiagnosticWarn\20DiagnosticError\tleft\1\0\0\15DiffRemove\17DiffModified\fDiffAdd\14GitBranch\rFileName\17FileNameIcon\fVimMode\14ScrollBar\fsection\25filetype_conditional\18get_component\28axie.plugins.galaxyline\15galaxyline\frequire\17€€À™\4\t€€À™\4\r€€À™\4\3€€À™\4\0" }, load_after = {}, loaded = true, needs_bufread = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/galaxyline.nvim", url = "https://github.com/NTBBloodbath/galaxyline.nvim" }, ["gitlinker.nvim"] = { config = { "\27LJ\2\nƒ\2\0\0\4\0\a\0\0146\0\0\0'\2\1\0B\0\2\0029\0\2\0006\1\0\0'\3\3\0B\1\2\0029\1\4\0015\3\5\0B\1\2\1\18\1\0\0005\3\6\0B\1\2\1K\0\1\0\1\4\0\0\6v\14gw{lua require'gitlinker'.get_buf_range_url('n', {action_callback = require'gitlinker.actions'.open_in_browser})\1\0\1\rmappings\14gy\nsetup\14gitlinker\bmap\15axie.utils\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/gitlinker.nvim", url = "https://github.com/ruifm/gitlinker.nvim" }, ["gitsigns.nvim"] = { config = { "\27LJ\2\nÐ\3\0\0\5\0\r\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\b\0005\3\4\0005\4\3\0=\4\5\0035\4\6\0=\4\a\3=\3\t\2B\0\2\0016\0\n\0009\0\v\0'\2\f\0B\0\2\1K\0\1\0-highlight link GitSignsDeleteLn ErrorMsg\bcmd\bvim\fkeymaps\1\0\2\nnumhl\2\15signcolumn\1\tn [g\1\2\1\0H&diff ? '[g' : 'lua require\"gitsigns.actions\".prev_hunk()'\texpr\2\tn ]g\1\0\2\tx ih::lua require\"gitsigns.actions\".select_hunk()\to ih::lua require\"gitsigns.actions\".select_hunk()\1\2\1\0H&diff ? ']g' : 'lua require\"gitsigns.actions\".next_hunk()'\texpr\2\nsetup\rgitsigns\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/gitsigns.nvim", url = "https://github.com/lewis6991/gitsigns.nvim" }, ["glow.nvim"] = { commands = { "Glow", "GlowInstall" }, config = { "\27LJ\2\n5\0\0\2\0\4\0\0056\0\0\0009\0\1\0'\1\3\0=\1\2\0K\0\1\0\frounded\16glow_border\6g\bvim\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/glow.nvim", url = "https://github.com/ellisonleao/glow.nvim" }, ["hlargs.nvim"] = { config = { "\27LJ\2\nI\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\ncolor\f#F2CDCD\nsetup\vhlargs\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/hlargs.nvim", url = "https://github.com/m-demare/hlargs.nvim" }, ["impatient.nvim"] = { config = { "\27LJ\2\n@\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\1\2\0B\1\1\1K\0\1\0\19enable_profile\14impatient\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/impatient.nvim", url = "https://github.com/lewis6991/impatient.nvim" }, ["indent-blankline.nvim"] = { config = { "\27LJ\2\n¤\4\0\0\4\0\v\0\0156\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0=\3\5\0025\3\6\0=\3\a\2B\0\2\0016\0\b\0009\0\t\0+\1\2\0=\1\n\0K\0\1\0\18termguicolors\bopt\bvim\21filetype_exclude\1\f\0\0\rterminal\vpacker\nalpha\thelp\flspinfo\15toggleterm\16glowpreview\18lsp-installer\16checkhealth\vaerial\5\21context_patterns\1\23\0\0\nclass\vreturn\rfunction\vmethod\b^if\aif\v^while\16jsx_element\t^for\bfor\f^object\v^table\nblock\14arguments\17if_statement\16else_clause\16jsx_element\29jsx_self_closing_element\18try_statement\17catch_clause\21import_statement\19operation_type\1\0\4\31show_current_context_start\2\19use_treesitter\2\tchar\b▏\25show_current_context\2\nsetup\21indent_blankline\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/indent-blankline.nvim", url = "https://github.com/lukas-reineke/indent-blankline.nvim" }, ["kanagawa.nvim"] = { config = { "\27LJ\2\næ\1\0\0\a\0\15\0\0246\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\0026\1\0\0'\3\3\0B\1\2\0029\1\2\0015\3\4\0005\4\b\0005\5\6\0009\6\5\0=\6\a\5=\5\t\0045\5\n\0009\6\a\0=\6\a\0059\6\v\0=\6\f\5=\5\r\4=\4\14\3B\1\2\1K\0\1\0\14overrides\16NormalFloat\abg\rsumiInk2\1\0\0\14VertSplit\1\0\0\afg\1\0\1\abg\tNONE\fbg_dark\1\0\1\16transparent\2\rkanagawa\nsetup\20kanagawa.colors\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/kanagawa.nvim", url = "https://github.com/rebelot/kanagawa.nvim" }, ["lightspeed.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/lightspeed.nvim", url = "https://github.com/ggandor/lightspeed.nvim" }, ["lsp_signature.nvim"] = { config = { "\27LJ\2\n§\1\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0=\3\5\2B\0\2\1K\0\1\0\17handler_opts\1\0\1\vborder\frounded\1\0\4\fpadding\6 \19always_trigger\ttrue\15toggle_key\n\17transparency\3\20\nsetup\18lsp_signature\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/lsp_signature.nvim", url = "https://github.com/ray-x/lsp_signature.nvim" }, ["lspkind-nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/lspkind-nvim", url = "https://github.com/onsails/lspkind-nvim" }, ["markdown-preview.nvim"] = { commands = { "MarkdownPreview" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/markdown-preview.nvim", url = "https://github.com/iamcco/markdown-preview.nvim" }, ["marks.nvim"] = { config = { "\27LJ\2\n7\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\nmarks\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/marks.nvim", url = "https://github.com/chentau/marks.nvim" }, ["material.nvim"] = { config = { "\27LJ\2\n…\2\0\0\5\0\16\0\0196\0\0\0009\0\1\0'\1\3\0=\1\2\0006\0\4\0'\2\5\0B\0\2\0029\0\6\0005\2\a\0005\3\b\0=\3\t\0025\3\v\0005\4\n\0=\4\f\0035\4\r\0=\4\14\3=\3\15\2B\0\2\1K\0\1\0\22custom_highlights\20TelescopeNormal\1\0\1\abg\tNONE\31IndentBlanklineContextChar\1\0\0\1\0\1\afg\f#C678DD\fdisable\1\0\1\15background\2\1\0\1\fborders\2\nsetup\rmaterial\frequire\14palenight\19material_style\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/material.nvim", url = "https://github.com/marko-cerovac/material.nvim" }, ["minimap.vim"] = { commands = { "Minimap", "MinimapClose", "MinimapToggle", "MinimapRefresh", "MinimapUpdateHighlight" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/minimap.vim", url = "https://github.com/wfxr/minimap.vim" }, ["neo-tree.nvim"] = { config = { "\27LJ\2\n°\1\0\1\b\0\14\2\0246\1\0\0009\1\1\0019\1\2\0019\3\3\0'\4\4\0B\1\3\0026\2\5\0009\2\6\2\18\4\1\0B\2\2\2\22\2\0\0025\3\t\0006\4\a\0009\4\b\4\18\6\2\0)\a2\0B\4\3\2=\4\n\0036\4\0\0009\4\v\0049\4\f\4\23\4\1\4=\4\r\3L\3\2\0\vheight\nlines\6o\nwidth\1\0\0\bmax\tmath\blen\vstring\a:~\tpath\16fnamemodify\afn\bvim\b\f:\0\1\4\0\3\0\0066\1\0\0'\3\1\0B\1\2\0029\1\2\1B\1\1\1K\0\1\0\14close_all\rneo-tree\frequire…\1\0\0\4\0\a\0\r6\0\0\0009\0\1\0009\0\2\0)\2\0\0'\3\3\0B\0\3\2\a\0\4\0X\1\4€6\1\0\0009\1\5\1'\3\6\0B\1\2\1K\0\1\0\23setlocal buflisted\bcmd\fcurrent\22neo_tree_position\21nvim_buf_get_var\bapi\bvim)\1\0\3\0\3\0\0056\0\0\0009\0\1\0003\2\2\0B\0\2\1K\0\1\0\0\rschedule\bvim«\4\1\0\6\0\28\0#6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0005\4\5\0=\4\6\3=\3\a\0025\3\b\0005\4\n\0005\5\t\0=\5\v\0043\5\f\0=\5\r\4=\4\14\3=\3\15\0025\3\16\0005\4\17\0005\5\18\0=\5\19\4=\4\20\3=\3\21\0024\3\3\0005\4\22\0003\5\23\0=\5\24\4>\4\1\0035\4\25\0003\5\26\0=\5\24\4>\4\2\3=\3\27\2B\0\2\1K\0\1\0\19event_handlers\0\1\0\1\nevent\26neo_tree_buffer_enter\fhandler\0\1\0\1\nevent\16file_opened\15filesystem\19filtered_items\15never_show\1\2\0\0\t.git\1\0\1\18hide_dotfiles\1\1\0\3\26hijack_netrw_behavior\17open_current\16bind_to_cwd\1\27use_libuv_file_watcher\2\vwindow\npopup\tsize\0\rposition\1\0\0\1\0\2\bcol\t100%\brow\0062\1\0\2\nwidth\b30%\rposition\nfloat\30default_component_configs\tname\1\0\1\19trailing_slash\2\1\0\1\16indent_size\3\1\1\0\1\25use_popups_for_input\1\nsetup\rneo-tree\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/neo-tree.nvim", url = "https://github.com/nvim-neo-tree/neo-tree.nvim" }, neogen = { config = { "\27LJ\2\nR\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\19snippet_engine\fluasnip\nsetup\vneogen\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/neogen", url = "https://github.com/danymat/neogen" }, neomake = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/neomake", url = "https://github.com/neomake/neomake" }, ["neoscroll.nvim"] = { config = { "\27LJ\2\n7\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\14neoscroll\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/neoscroll.nvim", url = "https://github.com/karb94/neoscroll.nvim" }, ["neovim-session-manager"] = { config = { "\27LJ\2\n—\1\0\0\6\0\b\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\6\0006\3\0\0'\5\3\0B\3\2\0029\3\4\0039\3\5\3=\3\a\2B\0\2\1K\0\1\0\18autoload_mode\1\0\0\rDisabled\17AutoloadMode\27session_manager.config\nsetup\20session_manager\frequire\0" }, load_after = {}, loaded = true, needs_bufread = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/neovim-session-manager", url = "https://github.com/Shatur/neovim-session-manager" }, ["nightfox.nvim"] = { config = { "\27LJ\2\n:\0\0\4\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\1\2\0004\3\0\0B\1\2\1K\0\1\0\nsetup\rnightfox\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nightfox.nvim", url = "https://github.com/EdenEast/nightfox.nvim" }, ["nui.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nui.nvim", url = "https://github.com/MunifTanjim/nui.nvim" }, ["null-ls.nvim"] = { config = { "\27LJ\2\nú\2\0\0\a\0\15\1+6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\5\0006\3\0\0'\5\3\0B\3\2\0029\3\4\3B\3\1\2>\3\1\0026\3\0\0'\5\3\0B\3\2\0029\3\5\3B\3\1\2>\3\2\0026\3\0\0'\5\3\0B\3\2\0029\3\6\3B\3\1\2>\3\3\0026\3\0\0'\5\3\0B\3\2\0029\3\a\3B\3\1\0?\3\0\0B\0\2\0026\1\0\0'\3\b\0B\1\2\0029\1\t\0015\3\n\0=\0\v\0036\4\0\0'\6\f\0B\4\2\0029\4\r\4=\4\14\3B\1\2\1K\0\1\0\14on_attach\22default_on_attach\21axie.lsp.install\fsources\1\0\0\nsetup\fnull-ls\18hover_sources\24code_action_sources\23diagnostic_sources\23formatting_sources\18axie.lsp.null\22list_flatten_once\15axie.utils\frequire\t€€À™\4\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/null-ls.nvim", url = "https://github.com/jose-elias-alvarez/null-ls.nvim" }, ["numb.nvim"] = { config = { "\27LJ\2\nF\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\16number_only\2\nsetup\tnumb\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/numb.nvim", url = "https://github.com/nacro90/numb.nvim" }, ["nvim-autopairs"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-autopairs", url = "https://github.com/windwp/nvim-autopairs" }, ["nvim-biscuits"] = { config = { "\27LJ\2\n»\1\0\0\4\0\b\0\v6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\2B\0\2\1K\0\1\0\19default_config\1\0\3\18prefix_string\n ﬌ \17min_distance\3\4\15max_length\3\24\14on_events\1\0\0\1\3\0\0\16CursorMoved\17CursorMovedI\nsetup\18nvim-biscuits\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-biscuits", url = "https://github.com/code-biscuits/nvim-biscuits" }, ["nvim-bqf"] = { loaded = false, needs_bufread = true, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/nvim-bqf", url = "https://github.com/kevinhwang91/nvim-bqf" }, ["nvim-cmp"] = { config = { "\27LJ\2\n-\2\0\4\1\2\0\5-\0\0\0009\0\0\0G\2\0\0025\3\1\0D\0\3\0\0À\1\3\0\0\6i\6c\fmapping;\0\1\4\0\4\0\0066\1\0\0009\1\1\0019\1\2\0019\3\3\0B\1\2\1K\0\1\0\tbody\20vsnip#anonymous\afn\bvimT\0\0\2\1\3\0\r-\0\0\0009\0\0\0B\0\1\2\15\0\0\0X\1\4€-\0\0\0009\0\1\0B\0\1\1X\0\3€-\0\0\0009\0\2\0B\0\1\1K\0\1\0\0À\rcomplete\nabort\fvisibleT\0\0\2\1\3\0\r-\0\0\0009\0\0\0B\0\1\2\15\0\0\0X\1\4€-\0\0\0009\0\1\0B\0\1\1X\0\3€-\0\0\0009\0\2\0B\0\1\1K\0\1\0\0À\rcomplete\nclose\fvisibleR\0\1\3\1\2\0\f-\1\0\0009\1\0\1B\1\1\2\15\0\1\0X\2\4€-\1\0\0009\1\1\1B\1\1\1X\1\2€\18\1\0\0B\1\1\1K\0\1\0\0À\21select_next_item\fvisibleR\0\1\3\1\2\0\f-\1\0\0009\1\0\1B\1\1\2\15\0\1\0X\2\4€-\1\0\0009\1\1\1B\1\1\1X\1\2€\18\1\0\0B\1\1\1K\0\1\0\0À\21select_prev_item\fvisiblew\0\2\5\2\a\0\16-\2\0\0009\3\0\0009\3\1\0038\2\3\0029\3\2\2\14\0\3\0X\4\5€-\3\1\0009\3\3\0039\3\4\0039\4\2\0018\3\4\3=\3\2\0019\3\6\2=\3\5\1L\1\2\0\2À\1À\nlabel\tmenu\fdefault\fpresets\tkind\tname\vsourceœ\25\1\0\22\1˜\1\0¾\0026\0\0\0009\0\1\0'\1\3\0=\1\2\0006\0\4\0'\2\5\0B\0\2\0026\1\4\0'\3\6\0B\1\2\0026\2\0\0009\2\a\0025\3\t\0=\3\b\0025\2\v\0005\3\n\0=\3\f\0025\3\r\0=\3\14\0025\3\15\0=\3\16\0025\3\17\0=\3\18\0025\3\19\0=\3\20\0025\3\21\0=\3\22\0025\3\23\0=\3\24\0025\3\25\0=\3\26\0025\3\27\0=\3\28\0025\3\29\0=\3\30\0025\3\31\0=\3 \0025\3!\0=\3\"\0025\3#\0=\3$\0024\3\0\0006\4%\0\18\6\2\0B\4\2\4H\a\v€6\t&\0009\t'\t\18\v\3\0005\f(\0=\a)\f9\r*\b\14\0\r\0X\14\1€-\r\0\0=\r*\fB\t\3\1F\a\3\3R\aó3\4+\0009\5,\0005\a0\0005\b.\0003\t-\0=\t/\b=\b1\a5\b4\0\18\t\4\0009\v2\0009\v3\v)\rüÿB\v\2\0A\t\0\2=\t5\b\18\t\4\0009\v2\0009\v3\v)\r\4\0B\v\2\0A\t\0\2=\t6\b\18\t\4\0009\v2\0009\v7\vB\v\1\0A\t\0\2=\t8\b9\t2\0005\v:\0009\f2\0009\f9\fB\f\1\2=\f;\v9\f2\0009\f<\fB\f\1\2=\f=\vB\t\2\2=\t>\b\18\t\4\0009\v2\0009\v?\v5\rB\0009\14@\0009\14A\14=\14C\rB\v\2\0A\t\0\2=\tD\b\18\t\4\0009\v2\0009\v?\v5\rF\0009\14@\0009\14E\14=\14C\rB\v\2\0A\t\0\2=\tG\b9\t2\0005\vI\0003\fH\0=\f;\v3\fJ\0=\f=\vB\t\2\2=\tK\b\18\t\4\0003\vL\0B\t\2\2=\tM\b\18\t\4\0003\vN\0B\t\2\2=\tO\b=\b2\a=\3P\a5\bR\0003\tQ\0=\tS\b=\bT\a5\b`\0004\t\t\0009\nU\0009\nV\n9\nW\n>\n\1\t9\nU\0009\nV\n9\nX\n>\n\2\t9\nU\0009\nV\n9\nY\n>\n\3\t6\n\4\0'\fZ\0B\n\2\0029\n[\n>\n\4\t9\nU\0009\nV\n9\n\\\n>\n\5\t9\nU\0009\nV\n9\n]\n>\n\6\t9\nU\0009\nV\n9\n^\n>\n\a\t9\nU\0009\nV\n9\n_\n>\n\b\t=\ta\b=\bb\a5\bc\0=\bd\aB\5\2\0016\5\4\0'\ae\0B\5\2\0029\5,\0054\a\0\0B\5\2\0016\5\4\0'\a \0B\5\2\0029\5,\0055\ag\0005\bf\0=\bh\aB\5\2\0016\5\4\0'\ai\0B\5\2\0029\5,\0055\aj\0004\b\0\0=\bk\aB\5\2\0016\5\4\0'\al\0B\5\2\0029\6m\0\18\b\6\0009\6n\6'\to\0009\np\5B\n\1\0A\6\2\0019\6,\0009\6\"\6'\bq\0005\ts\0004\n\3\0005\vr\0>\v\1\n=\nP\tB\6\3\0019\6,\0009\6\"\6'\bt\0005\tv\0009\nU\0009\nP\n4\f\3\0005\ru\0>\r\1\f4\r\0\0B\n\3\2=\nP\tB\6\3\0014\6\26\0005\aw\0>\a\1\0065\ax\0>\a\2\0065\ay\0>\a\3\0065\az\0>\a\4\0065\a{\0>\a\5\0065\a|\0>\a\6\0065\a}\0>\a\a\0065\a~\0>\a\b\0065\a\0>\a\t\0065\a€\0>\a\n\0065\a\0>\a\v\0065\a‚\0>\a\f\0065\aƒ\0>\a\r\0065\a„\0>\a\14\0065\a…\0>\a\15\0065\a†\0>\a\16\0065\a‡\0>\a\17\0065\aˆ\0>\a\18\0065\a‰\0>\a\19\0065\aŠ\0>\a\20\0065\a‹\0>\a\21\0065\aŒ\0>\a\22\0065\a\0>\a\23\0065\aŽ\0>\a\24\0065\a\0>\a\25\6+\a\1\0006\b\0\18\n\6\0B\b\2\4X\v\23€6\r‘\0\18\15\f\0B\r\2\0036\15\4\0'\17’\0B\15\2\0029\15“\15\18\17\a\0\18\18\r\0'\19”\0&\18\19\18\18\19\r\0B\15\4\2\18\r\15\0006\15\0\0009\15•\0156\17–\0009\17S\17'\19—\0\18\20\r\0\18\21\14\0B\17\4\0A\15\0\1E\v\3\3R\vç2\0\0€K\0\1\0\0À\25highlight link %s %s\vstring\bcmd\fDefault\fternary\15axie.utils\vunpack\vipairs\1\3\0\0\29CmpItemKindTypeParameter\16TSParameter\1\3\0\0\22CmpItemKindStruct\16TSStructure\1\3\0\0\24CmpItemKindConstant\15TSConstant\1\3\0\0\26CmpItemKindEnumMember\fTSField\1\3\0\0\21CmpItemKindEvent\15TSConstant\1\3\0\0\22CmpItemKindFolder\nTSURI\1\3\0\0\20CmpItemKindFile\nTSURI\1\3\0\0\21CmpItemKindColor\rcssColor\1\3\0\0\23CmpItemKindSnippet\vTSText\1\3\0\0\23CmpItemKindKeyword\14TSKeyword\1\3\0\0\20CmpItemKindEnum\fTSField\1\3\0\0\21CmpItemKindField\fTSField\1\3\0\0\21CmpItemKindValue\fTSField\1\3\0\0\20CmpItemKindUnit\fTSField\1\3\0\0\25CmpItemKindReference\25TSParameterReference\1\3\0\0\24CmpItemKindOperator\15TSOperator\1\3\0\0\24CmpItemKindProperty\15TSProperty\1\3\0\0\22CmpItemKindModule\16TSNamespace\1\3\0\0\25CmpItemKindInterface\vTSType\1\3\0\0\21CmpItemKindClass\vTSType\1\3\0\0\24CmpItemKindVariable\15TSVariable\1\3\0\0\27CmpItemKindConstructor\vTSType\1\3\0\0\24CmpItemKindFunction\15TSFunction\1\3\0\0\20CmpItemKindText\vTSText\1\3\0\0\22CmpItemKindMethod\rTSMethod\1\0\0\1\0\1\tname\tpath\6:\1\0\0\1\0\1\tname\vbuffer\6/\20on_confirm_done\17confirm_done\aon\nevent\"nvim-autopairs.completion.cmp\14fast_wrap\1\0\0\19nvim-autopairs\14filetypes\1\0\0\1\2\0\0\6*\fcmp-npm\17experimental\1\0\1\15ghost_text\2\fsorting\16comparators\1\0\0\norder\vlength\14sort_text\tkind\nunder\25cmp-under-comparator\nscore\nexact\voffset\fcompare\vconfig\15formatting\vformat\1\0\0\0\fsources\f\0\n\0\n\0\1\0\0\0\v\1\0\1\vselect\1\fReplace\t\rbehavior\1\0\1\vselect\1\vInsert\20ConfirmBehavior\fconfirm\n\6c\nclose\6i\1\0\0\nabort\14\rcomplete\n\n\1\0\0\16scroll_docs\fmapping\fsnippet\1\0\0\vexpand\1\0\0\0\nsetup\0\rpriority\tname\1\0\0\vinsert\ntable\npairs\forgmode\1\0\1\nlabel\n[Org]\fcmdline\1\0\1\nlabel\n[Cmd]\fcmp_git\1\0\1\nlabel\n[Git]\bnpm\1\0\1\nlabel\n[NPM]\18latex_symbols\1\0\1\nlabel\f[LaTeX]\nspell\1\0\2\rpriority\3\1\nlabel\f[Spell]\nemoji\1\0\1\nlabel\f[Emoji]\tcalc\1\0\1\nlabel\v[Calc]\tpath\1\0\1\nlabel\v[Path]\nvsnip\1\0\2\rpriority\3\5\nlabel\f[Vsnip]\vbuffer\1\0\2\rpriority\3\1\nlabel\r[Buffer]\rnvim_lua\1\0\2\rpriority\3\3\nlabel\n[Lua]\rnvim_lsp\1\0\0\1\0\2\rpriority\3\3\nlabel\n[LSP]\1\4\0\0\tmenu\fmenuone\rnoselect\16completeopt\bopt\flspkind\bcmp\frequire$~/.config/nvim/lua/lsp/snippets\22vsnip_snippet_dir\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-cmp", url = "https://github.com/hrsh7th/nvim-cmp" }, ["nvim-code-action-menu"] = { commands = { "CodeActionMenu" }, loaded = false, needs_bufread = true, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/nvim-code-action-menu", url = "https://github.com/weilbith/nvim-code-action-menu" }, ["nvim-colorizer.lua"] = { config = { "\27LJ\2\n7\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\14colorizer\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-colorizer.lua", url = "https://github.com/norcalli/nvim-colorizer.lua" }, ["nvim-conv"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-conv", url = "https://github.com/simonefranza/nvim-conv" }, ["nvim-dap"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-dap", url = "https://github.com/mfussenegger/nvim-dap" }, ["nvim-dap-python"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-dap-python", url = "https://github.com/mfussenegger/nvim-dap-python" }, ["nvim-dap-ui"] = { config = { "\27LJ\2\nþ\1\0\0\5\0\r\0\0276\0\0\0'\2\1\0B\0\2\0029\1\2\0009\1\3\1'\2\5\0=\2\4\0016\1\0\0'\3\6\0B\1\2\0029\1\a\0014\3\0\0B\1\2\0016\1\0\0'\3\b\0B\1\2\0029\2\a\1'\4\t\0B\2\2\1'\2\v\0=\2\n\0016\2\0\0'\4\f\0B\2\2\0029\2\a\2B\2\1\1K\0\1\0\26nvim-dap-virtual-text\vpytest\16test_runner\20/usr/bin/python\15dap-python\nsetup\ndapui\01610split new\21terminal_win_cmd\rfallback\rdefaults\bdap\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-dap-ui", url = "https://github.com/rcarriga/nvim-dap-ui" }, ["nvim-dap-virtual-text"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-dap-virtual-text", url = "https://github.com/theHamsta/nvim-dap-virtual-text" }, ["nvim-gomove"] = { config = { "\27LJ\2\nN\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\22move_past_end_col\1\nsetup\vgomove\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-gomove", url = "https://github.com/booperlv/nvim-gomove" }, ["nvim-hlslens"] = { after = { "nvim-scrollbar" }, loaded = true, only_config = true }, ["nvim-jdtls"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-jdtls", url = "https://github.com/mfussenegger/nvim-jdtls" }, ["nvim-lightbulb"] = { config = { "\27LJ\2\nœ\2\0\0\4\0\r\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\0025\3\b\0=\3\t\2B\0\2\0016\0\n\0009\0\v\0'\2\f\0B\0\2\1K\0\1\0Rautocmd CursorHold,CursorHoldI * lua require'axie.plugins.lightbulb'.update()\bcmd\bvim\16status_text\1\0\2\fenabled\2\ttext\30 Code Action Available\tsign\1\0\1\fenabled\1\vignore\1\0\0\1\2\0\0\fnull-ls\nsetup\19nvim-lightbulb\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-lightbulb", url = "https://github.com/kosayoda/nvim-lightbulb" }, ["nvim-lsp-installer"] = { config = { "\27LJ\2\nû\2\0\0\3\0\b\0\0196\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\0016\0\0\0'\2\1\0B\0\2\0029\0\3\0B\0\1\0016\0\4\0009\0\5\0'\2\6\0B\0\2\0016\0\4\0009\0\5\0'\2\a\0B\0\2\1K\0\1\0o au FileType markdown nnoremap \\g lua require'axie.lsp.install'.toggle_grammarly()\n p augroup javalsp\n au!\n au FileType java lua require'axie.lsp.install'.setup_jdtls()\n augroup end\n \bcmd\bvim\27setup_language_servers\29prepare_language_servers\21axie.lsp.install\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-lsp-installer", url = "https://github.com/williamboman/nvim-lsp-installer" }, ["nvim-lsp-ts-utils"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-lsp-ts-utils", url = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils" }, ["nvim-lspconfig"] = { config = { "\27LJ\2\nD\0\1\6\0\5\0\0066\1\0\0009\1\1\1'\3\2\0009\4\3\0009\5\4\0D\1\4\0\vsource\fmessage\f%s [%s]\vformat\vstringÄ\1\2\0\t\1\t\0\22-\0\0\0G\2\0\0A\0\0\3\15\0\0\0X\2\16€6\2\0\0009\2\1\0029\2\2\2\18\4\0\0'\5\3\0'\6\4\0'\a\5\0005\b\6\0B\2\6\0016\2\0\0009\2\1\0029\2\a\2\18\4\1\0'\5\b\0)\6\20\0B\2\4\1K\0\1\0\0À\rwinblend\24nvim_win_set_option\1\0\2\fnoremap\2\vsilent\2\22wincmd p\6K\6n\24nvim_buf_set_keymap\bapi\bvimG\1\1\6\0\5\0\b5\1\0\0006\2\1\0009\2\2\0029\2\3\0023\4\4\0\18\5\1\0002\0\0€D\2\3\0\0\twith\blsp\bvim\1\0\1\vborder\frounded0\0\1\4\1\2\0\6-\1\0\0\18\3\0\0B\1\2\2'\2\1\0=\2\0\1L\1\2\0\3À\frounded\vborderê\5\1\0\v\0%\0M6\0\0\0'\2\1\0B\0\2\0029\0\2\0006\1\3\0\18\3\0\0B\1\2\4H\4\f€'\6\4\0\18\a\4\0&\6\a\0066\a\5\0009\a\6\a9\a\a\a\18\t\6\0005\n\b\0=\5\t\n=\6\n\n=\6\v\nB\a\3\1F\4\3\3R\4ò6\1\5\0009\1\f\0019\1\r\0016\2\5\0009\2\f\0029\2\15\0026\4\5\0009\4\f\0049\4\16\0049\4\17\0045\5\23\0005\6\19\0009\a\18\0=\a\20\0063\a\21\0=\a\22\6=\6\24\5B\2\3\2=\2\14\0016\1\5\0009\1\16\0019\1\25\0015\3\27\0005\4\26\0=\4\28\3B\1\2\0013\1\29\0006\2\5\0009\2\f\0029\2\r\2\18\3\1\0006\5\5\0009\5\f\0059\5\r\0059\5\31\5B\3\2\2=\3\30\0026\2\5\0009\2\f\0029\2\r\2\18\3\1\0006\5\5\0009\5\f\0059\5\r\0059\5!\5B\3\2\2=\3 \0026\2\0\0'\4\"\0B\2\2\0029\3#\0023\4$\0=\4#\0022\0\0€K\0\1\0\0\17default_opts\25lspconfig.ui.windows\19signature_help\31textDocument/signatureHelp\nhover\23textDocument/hover\0\nfloat\1\0\0\1\0\1\vsource\valways\vconfig\17virtual_text\1\0\3\21update_in_insert\2\14underline\2\nsigns\2\vformat\0\vprefix\1\0\2\vsource\valways\fspacing\3\4\16VirtualText\27on_publish_diagnostics\15diagnostic\twith$textDocument/publishDiagnostics\rhandlers\blsp\nnumhl\vtexthl\ttext\1\0\0\16sign_define\afn\bvim\19DiagnosticSign\npairs\22diagnostics_icons\22axie.utils.config\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-lspconfig", url = "https://github.com/neovim/nvim-lspconfig" }, ["nvim-luaref"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-luaref", url = "https://github.com/milisims/nvim-luaref" }, ["nvim-neoclip.lua"] = { config = { "\27LJ\2\nˆ\1\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0B\0\2\0016\0\0\0'\2\4\0B\0\2\0029\0\5\0'\2\1\0B\0\2\1K\0\1\0\19load_extension\14telescope\1\0\1\30enable_persistent_history\2\nsetup\fneoclip\frequire\0" }, load_after = {}, loaded = true, needs_bufread = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/nvim-neoclip.lua", url = "https://github.com/AckslD/nvim-neoclip.lua" }, ["nvim-notify"] = { config = { "\27LJ\2\n\v\0\1\1\0\0\0\1K\0\1\0y\1\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0003\3\4\0=\3\5\2B\0\2\1K\0\1\0\fon_open\0\1\0\2\vrender\fminimal\22background_colour\16NormalFloat\nsetup\vnotify\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-notify", url = "https://github.com/rcarriga/nvim-notify" }, ["nvim-regexplainer"] = { config = { "\27LJ\2\nÞ\1\0\0\6\0\14\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\a\0005\4\5\0005\5\4\0=\5\6\4=\4\b\0035\4\t\0=\4\n\3=\3\v\0025\3\f\0=\3\r\2B\0\2\1K\0\1\0\rmappings\1\0\1\vtoggle\agR\npopup\16win_options\1\0\1\rwinblend\3\20\vborder\1\0\0\fpadding\1\0\1\nstyle\frounded\1\3\0\0\3\0\3\0\1\0\2\fdisplay\npopup\tauto\1\nsetup\17regexplainer\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-regexplainer", url = "https://github.com/bennypowers/nvim-regexplainer" }, ["nvim-scrollbar"] = { config = { "\27LJ\2\në\1\0\0\4\0\t\0\0166\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\2B\0\2\0016\0\0\0'\2\b\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\30scrollbar.handlers.search\23excluded_filetypes\1\a\0\0\vprompt\20TelescopePrompt\rterminal\flspinfo\nalpha\15toggleterm\vhandle\1\0\0\1\0\1\14highlight\15CursorLine\nsetup\14scrollbar\frequire\0" }, load_after = {}, loaded = true, needs_bufread = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/nvim-scrollbar", url = "https://github.com/petertriho/nvim-scrollbar" }, ["nvim-treesitter"] = { config = { "\27LJ\2\n \14\0\0\t\0@\0T6\0\0\0'\2\1\0B\0\2\0029\0\2\0006\1\0\0'\3\3\0B\1\2\0029\1\4\1B\1\1\0025\2\t\0005\3\6\0005\4\a\0=\4\b\3=\3\n\2=\2\5\0016\2\0\0'\4\3\0B\2\2\0029\2\v\2B\2\1\0026\3\f\0009\3\r\3\18\5\2\0005\6\14\0B\3\3\0016\3\0\0'\5\15\0B\3\2\0029\3\16\0035\5\17\0=\2\18\0055\6\19\0005\a\20\0=\a\21\0065\a\22\0=\a\23\6=\6\24\0055\6\25\0005\a\26\0=\a\21\6=\6\27\0055\6\28\0005\a\29\0=\a\30\6=\6\31\0055\6 \0=\6!\0055\6\"\0=\6#\0055\6)\0005\a$\0005\b%\0=\b&\a5\b'\0=\b(\a=\a*\0065\a+\0005\b,\0=\b\30\a=\a-\0065\a.\0005\b/\0=\b0\a=\a1\6=\0062\0055\0063\0005\a4\0=\a\30\6=\0065\0055\0066\0=\0067\0055\0068\0=\0069\0055\6:\0=\6;\0055\6<\0=\6=\5B\3\2\1\18\3\0\0006\5\f\0009\5>\0055\6?\0B\3\3\1K\0\1\0\1\0\4\rfoldexpr\31nvim_treesitter#foldexpr()\15foldmethod\texpr\15foldenable\1\14foldlevel\3\0\6o\fmatchup\1\0\2\25disable_virtual_text\2\venable\2\26context_commentstring\1\0\2\19enable_autocmd\1\venable\2\frainbow\1\0\3\19max_file_lines\3è\a\18extended_mode\2\venable\2\fautotag\1\0\1\venable\2\17textsubjects\1\0\2\v!textsubjects-container-outer\t\23textsubjects-smart\1\0\1\venable\2\16textobjects\16lsp_interop\25peek_definition_code\1\0\4\agP\17@class.outer\14lP\17@class.outer\agp\20@function.outer\14lp\20@function.outer\1\0\1\venable\2\vselect\1\0\r\aal\16@loop.outer\aaf\20@function.outer\aic\17@class.inner\ail\16@loop.inner\aiq\21@parameter.inner\aii\23@conditional.inner\aaq\21@parameter.outer\aab\17@block.outer\aag\19@comment.outer\aib\17@block.inner\aif\20@function.inner\aac\17@class.outer\aai\23@conditional.outer\1\0\2\14lookahead\2\venable\2\tmove\1\0\0\20goto_next_start\1\0\1\a]]\21@parameter.inner\24goto_previous_start\1\0\1\a[[\21@parameter.inner\1\0\2\14set_jumps\2\venable\2\17query_linter\1\0\2\21use_virtual_text\2\venable\2\15playground\1\0\1\venable\2\26incremental_selection\fkeymaps\1\0\4\21node_incremental\a,m\19init_selection\a,,\22scope_incremental\a,,\21node_decremental\a,n\1\0\1\venable\2\vindent\1\2\0\0\vpython\1\0\1\vindent\2\14highlight&additional_vim_regex_highlighting\1\2\0\0\borg\fdisable\1\2\0\0\borg\1\0\1\venable\2\21ensure_installed\1\0\0\nsetup\28nvim-treesitter.configs\1\2\0\0\borg\16list_extend\bvim\22available_parsers\17install_info\1\0\1\rfiletype\borg\nfiles\1\3\0\0\17src/parser.c\19src/scanner.cc\1\0\2\rrevision-f110024d539e676f25b72b7c80b0fd43c34264ef\burl0https://github.com/milisims/tree-sitter-org\borg\23get_parser_configs\28nvim-treesitter.parsers\14vim_apply\15axie.utils\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-treesitter", url = "https://github.com/nvim-treesitter/nvim-treesitter" }, ["nvim-treesitter-context"] = { config = { "\27LJ\2\n|\0\0\5\0\b\0\v6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\6\0005\3\4\0005\4\3\0=\4\5\3=\3\a\2B\0\2\1K\0\1\0\rpatterns\1\0\0\rmarkdown\1\0\0\1\2\0\0\16atx_heading\nsetup\23treesitter-context\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-treesitter-context", url = "https://github.com/romgrk/nvim-treesitter-context" }, ["nvim-treesitter-textobjects"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-treesitter-textobjects", url = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects" }, ["nvim-treesitter-textsubjects"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-treesitter-textsubjects", url = "https://github.com/RRethy/nvim-treesitter-textsubjects" }, ["nvim-ts-autotag"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-ts-autotag", url = "https://github.com/windwp/nvim-ts-autotag" }, ["nvim-ts-context-commentstring"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-ts-context-commentstring", url = "https://github.com/JoosepAlviste/nvim-ts-context-commentstring" }, ["nvim-ts-rainbow"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-ts-rainbow", url = "https://github.com/p00f/nvim-ts-rainbow" }, ["nvim-web-devicons"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/nvim-web-devicons", url = "https://github.com/kyazdani42/nvim-web-devicons" }, ["octo.nvim"] = { 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\tocto\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/octo.nvim", url = "https://github.com/pwntester/octo.nvim" }, ["onedarkpro.nvim"] = { after = { "galaxyline.nvim" }, loaded = true, only_config = true }, ["org-bullets.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/org-bullets.nvim", url = "https://github.com/akinsho/org-bullets.nvim" }, orgmode = { config = { "\27LJ\2\nÌ\1\0\0\6\0\v\0\0156\0\0\0'\2\1\0B\0\2\0029\1\2\0B\1\1\0019\1\3\0005\3\5\0005\4\4\0=\4\6\0035\4\b\0005\5\a\0=\5\t\4=\4\n\3B\1\2\1K\0\1\0\rmappings\vglobal\1\0\0\1\0\2\15org_agenda\14oa\16org_capture\14oc\20org_agenda_file\1\0\0\1\2\0\0\14~/wiki/**\nsetup\21setup_ts_grammar\forgmode\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/orgmode", url = "https://github.com/nvim-orgmode/orgmode" }, ["package-info.nvim"] = { config = { "\27LJ\2\nä\4\0\0\4\0\f\0 6\0\0\0'\2\1\0B\0\2\0029\0\2\0006\1\0\0'\3\3\0B\1\2\0029\1\4\0014\3\0\0B\1\2\1\18\1\0\0005\3\5\0B\1\2\1\18\1\0\0005\3\6\0B\1\2\1\18\1\0\0005\3\a\0B\1\2\1\18\1\0\0005\3\b\0B\1\2\1\18\1\0\0005\3\t\0B\1\2\1\18\1\0\0005\3\n\0B\1\2\1\18\1\0\0005\3\v\0B\1\2\1K\0\1\0\1\4\0\0\6n\14pp9:lua require'package-info'.change_version()\1\4\0\0\6n\14pr4:lua require'package-info'.reinstall()\1\4\0\0\6n\14pi2:lua require'package-info'.install()\1\4\0\0\6n\14pd1:lua require'package-info'.delete()\1\4\0\0\6n\14pu1:lua require'package-info'.update()\1\4\0\0\6n\14pc/:lua require'package-info'.hide()\1\4\0\0\6n\14ps/:lua require'package-info'.show()\nsetup\17package-info\bmap\15axie.utils\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/package-info.nvim", url = "https://github.com/vuki656/package-info.nvim" }, ["packer.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/packer.nvim", url = "https://github.com/wbthomason/packer.nvim" }, playground = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/playground", url = "https://github.com/nvim-treesitter/playground" }, ["plenary.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/plenary.nvim", url = "https://github.com/nvim-lua/plenary.nvim" }, ["pretty-fold.nvim"] = { config = { "\27LJ\2\n¦\1\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\0016\0\0\0'\2\3\0B\0\2\0029\0\4\0005\2\5\0B\0\2\1K\0\1\0\1\4\0\0\6n\azK=lua require'pretty-fold.preview'.show_preview()\bmap\15axie.utils\nsetup\16pretty-fold\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/pretty-fold.nvim", url = "https://github.com/anuvyklack/pretty-fold.nvim" }, ["project.nvim"] = { config = { "\27LJ\2\nt\0\0\3\0\6\0\f6\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\0016\0\0\0'\2\3\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\rprojects\19load_extension\14telescope\nsetup\17project_nvim\frequire\0" }, load_after = {}, loaded = true, needs_bufread = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/project.nvim", url = "https://github.com/ahmedkhalf/project.nvim" }, ["refactoring.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/refactoring.nvim", url = "https://github.com/ThePrimeagen/refactoring.nvim" }, ["run-code.nvim"] = { config = { "\27LJ\2\nÕ\1\0\0\4\0\b\0\0156\0\0\0'\2\1\0B\0\2\0029\0\2\0\18\1\0\0005\3\3\0B\1\2\1\18\1\0\0005\3\4\0B\1\2\0016\1\5\0009\1\6\1'\3\a\0B\1\2\1K\0\1\0007au FileType markdown nmap \\r RunCodeBlock\bcmd\bvim\1\4\0\0\6n\a\\r\25RunCodeFile\1\4\0\0\6v\a\\r\29RunCodeSelected\bmap\15axie.utils\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/run-code.nvim", url = "https://github.com/arjunmahishi/run-code.nvim" }, ["rust-tools.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/rust-tools.nvim", url = "https://github.com/simrat39/rust-tools.nvim" }, ["schemastore.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/schemastore.nvim", url = "https://github.com/b0o/schemastore.nvim" }, ["sqlite.lua"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/sqlite.lua", url = "https://github.com/tami5/sqlite.lua" }, ["suda.vim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/suda.vim", url = "https://github.com/lambdalisue/suda.vim" }, ["symbols-outline.nvim"] = { config = { "\27LJ\2\nh\0\0\2\0\4\0\0056\0\0\0009\0\1\0005\1\3\0=\1\2\0K\0\1\0\1\0\4\17auto_preview\1\15auto_close\2\vborder\frounded\rwinblend\3\15\20symbols_outline\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/symbols-outline.nvim", url = "https://github.com/simrat39/symbols-outline.nvim" }, ["tabout.nvim"] = { config = { "\27LJ\2\nî\1\0\0\4\0\b\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0B\0\2\0016\0\0\0'\2\4\0B\0\2\0029\0\5\0\18\1\0\0005\3\6\0B\1\2\1\18\1\0\0005\3\a\0B\1\2\1K\0\1\0\1\4\1\0\6i\n\28(TaboutBackMulti)\fnoremap\1\1\4\1\0\6i\n\24(TaboutMulti)\fnoremap\1\bmap\15axie.utils\1\0\3\15act_as_tab\1\21backwards_tabkey\5\vtabkey\5\nsetup\vtabout\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/tabout.nvim", url = "https://github.com/abecodes/tabout.nvim" }, tabular = { config = { "\27LJ\2\nŠ\1\0\0\4\0\4\0\b6\0\0\0'\2\1\0B\0\2\0029\0\2\0\18\1\0\0005\3\3\0B\1\2\1K\0\1\0\1\4\0\0\6i\6|H|:lua require('axie.plugins.tabular').md_cucumber_table()a\bmap\15axie.utils\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/tabular", url = "https://github.com/godlygeek/tabular" }, ["telescope-dap.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/telescope-dap.nvim", url = "https://github.com/nvim-telescope/telescope-dap.nvim" }, ["telescope-env.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/telescope-env.nvim", url = "https://github.com/LinArcX/telescope-env.nvim" }, ["telescope-file-browser.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/telescope-file-browser.nvim", url = "https://github.com/nvim-telescope/telescope-file-browser.nvim" }, ["telescope-fzf-native.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/telescope-fzf-native.nvim", url = "https://github.com/nvim-telescope/telescope-fzf-native.nvim" }, ["telescope-media-files.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/telescope-media-files.nvim", url = "https://github.com/nvim-telescope/telescope-media-files.nvim" }, ["telescope-symbols.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/telescope-symbols.nvim", url = "https://github.com/nvim-telescope/telescope-symbols.nvim" }, ["telescope-termfinder.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/telescope-termfinder.nvim", url = "https://github.com/tknightz/telescope-termfinder.nvim" }, ["telescope-zoxide"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/telescope-zoxide", url = "https://github.com/jvgrootveld/telescope-zoxide" }, ["telescope.nvim"] = { after = { "nvim-neoclip.lua", "project.nvim", "neovim-session-manager" }, loaded = true, only_config = true }, ["todo-comments.nvim"] = { config = { "\27LJ\2\n\t\0\0\6\0&\00016\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2 \0005\3\6\0005\4\3\0005\5\4\0=\5\5\4=\4\a\0035\4\b\0005\5\t\0=\5\5\4=\4\n\0035\4\v\0005\5\f\0=\5\5\4=\4\r\0035\4\14\0005\5\15\0=\5\5\4=\4\16\0035\4\17\0005\5\18\0=\5\5\4=\4\19\0035\4\20\0005\5\21\0=\5\5\4=\4\22\0035\4\23\0005\5\24\0=\5\5\4=\4\25\0035\4\26\0005\5\27\0=\5\5\4=\4\28\0035\4\29\0005\5\30\0=\5\5\4=\4\31\3=\3!\0025\3\"\0=\3#\0025\3$\0=\3%\2B\0\2\1K\0\1\0\vsearch\1\0\1\fpattern\19\\b(KEYWORDS)\\b\14highlight\1\0\4\fpattern\21.*<(KEYWORDS)\\s*\fkeyword\abg\nafter\afg\vbefore\nempty\rkeywords\1\0\0\tIDEA\1\n\0\0\fSUGGEST\15SUGGESTION\bTRY\rCONSIDER\bALT\16ALTERNATIVE\nINSPO\16INSPIRATION\vRANDOM\1\0\2\ticon\tï µ \ncolor\thint\rBOOKMARK\1\r\0\0\tREAD\nWATCH\tLOOK\bSEE\vREVIEW\tHERE\14IMPORTANT\bBIG\14EXTENSION\tLINK\vUSEFUL\fHELPFUL\1\0\2\ticon\t \ncolor\fwarning\rQUESTION\1\4\0\0\bIDK\fTHOUGHT\rPOSSIBLE\1\0\2\ticon\t \ncolor\nerror\tNOTE\1\14\0\0\tINFO\fINSTALL\nSETUP\nGUIDE\15ASSUMPTION\vASSUME\fASSUMES\vSOURCE\14REFERENCE\rREFACTOR\bDEP\15DEPENDENCY\17DEPENDENCIES\1\0\2\ticon\t \ncolor\tinfo\tPERF\1\a\0\0\16PERFORMANCE\nOPTIM\rOPTIMIZE\rOPTIMISE\15EFFICIENCY\tTEST\1\0\2\ticon\t \ncolor\fwarning\tHACK\1\a\0\0\tTEMP\14TEMPORARY\vCHANGE\vUPDATE\fCONFIRM\nCHECK\1\0\2\ticon\t \ncolor\fwarning\tTODO\1\6\0\0\bNEW\vACTION\15ACTIONABLE\rOPTIONAL\nMAYBE\1\0\2\ticon\t \ncolor\thint\tWARN\1\5\0\0\fWARNING\bXXX\bBAD\nERROR\1\0\2\ticon\t \ncolor\nerror\bFIX\1\0\0\balt\1\n\0\0\nFIXME\bBUG\bBAD\nFIXIT\nISSUE\tHELP\nPRIOR\rPRIORITY\fPROBLEM\1\0\2\ticon\t \ncolor\nerror\nsetup\18todo-comments\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/todo-comments.nvim", url = "https://github.com/folke/todo-comments.nvim" }, ["toggle-lsp-diagnostics.nvim"] = { config = { "\27LJ\2\nC\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\tinit\27toggle_lsp_diagnostics\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/toggle-lsp-diagnostics.nvim", url = "https://github.com/WhoIsSethDaniel/toggle-lsp-diagnostics.nvim" }, ["toggleterm.nvim"] = { config = { "\27LJ\2\n‡\1\0\1\4\0\b\1\0179\1\0\0\a\1\1\0X\1\3€)\1\15\0L\1\2\0X\1\n€9\1\0\0\a\1\2\0X\1\a€6\1\3\0009\1\4\0016\3\5\0009\3\6\0039\3\a\3\24\3\0\3D\1\2\0K\0\1\0\fcolumns\6o\bvim\tceil\tmath\rvertical\15horizontal\14direction\1€€€ÿ\3ž\n\1\0\a\0%\1R6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0003\3\3\0=\3\5\0025\3\6\0006\4\a\0009\4\b\0046\6\t\0009\6\n\0069\6\v\6\24\6\0\6B\4\2\2=\4\f\0036\4\a\0009\4\b\0046\6\t\0009\6\n\0069\6\r\6\24\6\0\6B\4\2\2=\4\14\0035\4\15\0=\4\16\3=\3\17\2B\0\2\0016\0\t\0009\0\18\0'\2\19\0B\0\2\0016\0\0\0'\2\20\0B\0\2\0029\0\21\0\18\1\0\0005\3\22\0B\1\2\1\18\1\0\0005\3\23\0B\1\2\1\18\1\0\0005\3\24\0B\1\2\1\18\1\0\0005\3\25\0B\1\2\1\18\1\0\0005\3\26\0B\1\2\1\18\1\0\0005\3\27\0B\1\2\1\18\1\0\0005\3\28\0B\1\2\1\18\1\0\0005\3\29\0B\1\2\1\18\1\0\0005\3\30\0B\1\2\1\18\1\0\0005\3\31\0B\1\2\1\18\1\0\0005\3 \0B\1\2\1\18\1\0\0005\3!\0B\1\2\1\18\1\0\0005\3\"\0B\1\2\1\18\1\0\0005\3#\0B\1\2\1\18\1\0\0005\3$\0B\1\2\1K\0\1\0\1\4\0\0\6t\n'Telescope termfinder find\1\4\0\0\6i\n'Telescope termfinder find\1\4\0\0\6n\n'Telescope termfinder find\1\4\0\0\6t\t'4ToggleTerm direction=tab\1\4\0\0\6i\t'4ToggleTerm direction=tab\1\4\0\0\6n\t'4ToggleTerm direction=tab\1\4\0\0\6t\t,3ToggleTerm direction=vertical\1\4\0\0\6i\t,3ToggleTerm direction=vertical\1\4\0\0\6n\t,3ToggleTerm direction=vertical\1\4\0\0\6t\t.2ToggleTerm direction=horizontal\1\4\0\0\6i\t.2ToggleTerm direction=horizontal\1\4\0\0\6n\t.2ToggleTerm direction=horizontal\1\4\0\0\6t\t)1ToggleTerm direction=float\1\4\0\0\6i\t)1ToggleTerm direction=float\1\4\0\0\6n\t)1ToggleTerm direction=float\bmap\15axie.utilsMautocmd! TermOpen term://* lua require'axie.plugins.toggleterm'.attach()\bcmd\15float_opts\15highlights\1\0\1\vborder\16FloatBorder\vheight\nlines\nwidth\fcolumns\6o\bvim\tceil\tmath\1\0\1\vborder\vcurved\tsize\1\0\0\0\nsetup\15toggleterm\frequireµæ̙\19™³¦ÿ\3\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/toggleterm.nvim", url = "https://github.com/akinsho/toggleterm.nvim" }, ["tokyonight.nvim"] = { config = { "\27LJ\2\ng\0\0\2\0\4\0\t6\0\0\0009\0\1\0+\1\2\0=\1\2\0006\0\0\0009\0\1\0+\1\2\0=\1\3\0K\0\1\0#tokyonight_transparent_sidebar\27tokyonight_transparent\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/tokyonight.nvim", url = "https://github.com/folke/tokyonight.nvim" }, ["trouble.nvim"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/trouble.nvim", url = "https://github.com/folke/trouble.nvim" }, ["twilight.nvim"] = { commands = { "Twilight" }, config = { "\27LJ\2\nI\2\0\3\1\3\0\b-\0\0\0G\2\0\0A\0\0\0016\0\0\0009\0\1\0'\2\2\0B\0\2\1K\0\1\0\1À\28hi! Twilight guibg=NONE\bcmd\bvimj\1\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\0016\0\0\0'\2\3\0B\0\2\0029\1\4\0003\2\5\0=\2\4\0002\0\0€K\0\1\0\0\vcolors\20twilight.config\nsetup\rtwilight\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/twilight.nvim", url = "https://github.com/folke/twilight.nvim" }, ["vim-abolish"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-abolish", url = "https://github.com/tpope/vim-abolish" }, ["vim-brightest"] = { config = { "\27LJ\2\nQ\0\0\2\0\4\0\0056\0\0\0009\0\1\0005\1\3\0=\1\2\0K\0\1\0\1\0\1\ngroup\23BrightestUnderline\24brightest#highlight\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-brightest", url = "https://github.com/osyo-manga/vim-brightest" }, ["vim-caser"] = { config = { "\27LJ\2\n1\0\0\2\0\4\0\0056\0\0\0009\0\1\0'\1\3\0=\1\2\0K\0\1\0\acR\17caser_prefix\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-caser", url = "https://github.com/arthurxavierx/vim-caser" }, ["vim-cool"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-cool", url = "https://github.com/romainl/vim-cool" }, ["vim-dispatch"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-dispatch", url = "https://github.com/tpope/vim-dispatch" }, ["vim-doge"] = { config = { "\27LJ\2\n/\0\0\2\0\4\0\0056\0\0\0009\0\1\0'\1\3\0=\1\2\0K\0\1\0\5\17doge_mapping\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-doge", url = "https://github.com/kkoomen/vim-doge" }, ["vim-matchup"] = { config = { "\27LJ\2\nV\0\0\2\0\4\0\0056\0\0\0009\0\1\0005\1\3\0=\1\2\0K\0\1\0\1\0\1\vmethod\18status_manual!matchup_matchparen_offscreen\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-matchup", url = "https://github.com/andymass/vim-matchup" }, ["vim-mundo"] = { config = { "\27LJ\2\n¼\3\0\0\3\0\6\0\r6\0\0\0009\0\1\0)\1\0\0=\1\2\0006\0\0\0009\0\1\0)\1d\0=\1\3\0006\0\0\0009\0\4\0'\2\5\0B\0\2\1K\0\1\0Ì\2 if has(\"persistent_undo\")\n let target_path = expand('~/.undodir')\n\n \" create the directory and any parent directories\n \" if the location does not exist.\n if !isdirectory(target_path)\n call mkdir(target_path, \"p\", 0700)\n endif\n\n let &undodir=target_path\n set undofile\n endif\n \bcmd\25mundo_playback_delay\29mundo_auto_preview_delay\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-mundo", url = "https://github.com/simnalamburt/vim-mundo" }, ["vim-nightfly-guicolors"] = { config = { "\27LJ\2\n5\0\0\2\0\3\0\0056\0\0\0009\0\1\0)\1\1\0=\1\2\0K\0\1\0\24nightflyTransparent\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-nightfly-guicolors", url = "https://github.com/bluz71/vim-nightfly-guicolors" }, ["vim-python-pep8-indent"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-python-pep8-indent", url = "https://github.com/Vimjas/vim-python-pep8-indent" }, ["vim-repeat"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-repeat", url = "https://github.com/tpope/vim-repeat" }, ["vim-sleuth"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-sleuth", url = "https://github.com/tpope/vim-sleuth" }, ["vim-surround"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-surround", url = "https://github.com/tpope/vim-surround" }, ["vim-test"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-test", url = "https://github.com/vim-test/vim-test" }, ["vim-ultest"] = { config = { "\27LJ\2\n†\1\0\0\2\0\a\0\r6\0\0\0009\0\1\0)\1\1\0=\1\2\0006\0\0\0009\0\1\0'\1\4\0=\1\3\0006\0\0\0009\0\1\0'\1\6\0=\1\5\0K\0\1\0\15gradletest\21test#java#runner\vpytest\23test#python#runner\19ultest_use_pty\6g\bvim\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-ultest", url = "https://github.com/rcarriga/vim-ultest" }, ["vim-unimpaired"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-unimpaired", url = "https://github.com/tpope/vim-unimpaired" }, ["vim-visual-multi"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-visual-multi", url = "https://github.com/mg979/vim-visual-multi" }, ["vim-vsnip"] = { loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/vim-vsnip", url = "https://github.com/hrsh7th/vim-vsnip" }, ["which-key.nvim"] = { config = { "\27LJ\2\nõ\1\0\0\5\0\f\0\0266\0\0\0'\2\1\0B\0\2\0029\1\2\0005\3\4\0005\4\3\0=\4\5\0035\4\6\0=\4\a\3B\1\2\0016\1\0\0'\3\b\0B\1\2\0029\1\t\1B\1\1\0016\1\0\0'\3\b\0B\1\2\0029\1\n\1B\1\1\0016\1\0\0'\3\b\0B\1\2\0029\1\v\1B\1\1\1K\0\1\0\tmisc\26register_git_bindings\21general_mappings\23axie.plugins.binds\vwindow\1\0\1\rwinblend\3\20\vlayout\1\0\0\1\0\1\nalign\vcenter\nsetup\14which-key\frequire\0" }, loaded = true, path = "/home/axie/.local/share/nvim/site/pack/packer/start/which-key.nvim", url = "https://github.com/folke/which-key.nvim" }, ["zen-mode.nvim"] = { commands = { "ZenMode" }, config = { "\27LJ\2\nð\1\0\0\3\0\a\0\0146\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\0016\0\3\0009\0\4\0'\2\5\0B\0\2\0016\0\3\0009\0\4\0'\2\6\0B\0\2\1K\0\1\0H:silent! lua require'toggle_lsp_diagnostics'.toggle_underline()K:silent! lua require'toggle_lsp_diagnostics'.toggle_virtual_text()\bcmd\bvim\17toggle_numhl\rgitsigns\frequire\21\0\1\3\1\0\0\3-\1\0\0B\1\1\1K\0\1\0\0À\21\0\0\2\1\0\0\3-\0\0\0B\0\1\1K\0\1\0\0À¶\1\1\0\6\0\15\0\0193\0\0\0006\1\1\0'\3\2\0B\1\2\0029\1\3\0015\3\t\0005\4\5\0005\5\4\0=\5\6\0045\5\a\0=\5\b\4=\4\n\0033\4\v\0=\4\f\0033\4\r\0=\4\14\3B\1\2\0012\0\0€K\0\1\0\ron_close\0\fon_open\0\fplugins\1\0\0\rgitsigns\1\0\1\fenabled\1\rtwilight\1\0\0\1\0\1\fenabled\2\nsetup\rzen-mode\frequire\0\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/home/axie/.local/share/nvim/site/pack/packer/opt/zen-mode.nvim", url = "https://github.com/folke/zen-mode.nvim" } } time([[Defining packer_plugins]], false) -- Config for: vim-brightest time([[Config for vim-brightest]], true) try_loadstring("\27LJ\2\nQ\0\0\2\0\4\0\0056\0\0\0009\0\1\0005\1\3\0=\1\2\0K\0\1\0\1\0\1\ngroup\23BrightestUnderline\24brightest#highlight\6g\bvim\0", "config", "vim-brightest") time([[Config for vim-brightest]], false) -- Config for: alpha-nvim time([[Config for alpha-nvim]], true) try_loadstring("\27LJ\2\nÂ\r\0\0\v\0005\1k6\0\0\0'\2\1\0B\0\2\0029\1\2\0009\1\3\0015\2\5\0=\2\4\0019\1\2\0009\1\6\0014\2\f\0009\3\a\0'\5\b\0'\6\t\0'\a\n\0B\3\4\2>\3\1\0029\3\a\0'\5\v\0'\6\f\0'\a\r\0B\3\4\2>\3\2\0029\3\a\0'\5\14\0'\6\15\0'\a\16\0B\3\4\2>\3\3\0029\3\a\0'\5\17\0'\6\18\0'\a\19\0B\3\4\2>\3\4\0029\3\a\0'\5\20\0'\6\21\0'\a\22\0B\3\4\2>\3\5\0029\3\a\0'\5\23\0'\6\24\0'\a\25\0B\3\4\2>\3\6\0029\3\a\0'\5\26\0'\6\27\0'\a\28\0B\3\4\2>\3\a\0029\3\a\0'\5\29\0'\6\30\0'\a\31\0B\3\4\2>\3\b\0029\3\a\0'\5 \0'\6!\0'\a\"\0B\3\4\2>\3\t\0029\3\a\0'\5#\0'\6$\0'\a%\0B\3\4\2>\3\n\0029\3\a\0'\5&\0'\6'\0'\a(\0B\3\4\0?\3\0\0=\2\4\0016\1\0\0'\3)\0B\1\2\0029\1*\1\18\2\1\0'\4+\0B\2\2\2\21\2\2\0\18\3\1\0'\5,\0B\3\2\2\21\3\3\0009\4\2\0009\4-\0045\0051\0006\6.\0009\6/\6'\b0\0 \t\3\2\18\n\2\0B\6\4\2>\6\1\5=\5\4\0046\4\0\0'\0062\0B\4\2\0029\0043\0049\0064\0B\4\2\1K\0\1\0\vconfig\nsetup\nalpha\1\3\0\0\0$ https://github.com/axieax/!  %d plugins (%d loaded)\vformat\vstring\vfooter/~/.local/share/nvim/site/pack/packer/opt/*1~/.local/share/nvim/site/pack/packer/start/*\15glob_split\15axie.utils\16qa\21⏻ Quit Neovim\6q\24PackerSync\24 Update Plugins\6u3e ~/.config/nvim/lua/plugins/init.lua\22﫸 Neovim Config\6c)SessionManager load_session\23 Find Sessions\6S.SessionManager load_last_session\25 Restore Session\6s Telescope projects\23 Find Projects\6p Telescope oldfiles\22 Recent Files\6o\29Telescope marks\19 Bookmarks\6b!Telescope live_grep\19 Live Grep\6g?lua require'axie.plugins.telescope'.file_search()\20 Find Files\6f#ene startinsert\18 New File\6n\vbutton\fbuttons\1\t\0\0: _____ ____ ___.______________ _____ ____ ___: / _ \\ \\ \\/ /| \\_ _____/ / _ \\ \\ \\/ /: / /_\\ \\ \\ / | || __)_ / /_\\ \\ \\ / :/ | \\/ \\ | || \\/ | \\/ \\ :\\____|__ /___/\\ \\|___/_______ /\\____|__ /___/\\ \\: \\/ \\_/ \\/ \\/ \\_/: : > Press [s] to restore your last session < \bval\vheader\fsection\27alpha.themes.dashboard\frequire\23€€À™\4\0", "config", "alpha-nvim") time([[Config for alpha-nvim]], false) -- Config for: gitlinker.nvim time([[Config for gitlinker.nvim]], true) try_loadstring("\27LJ\2\nƒ\2\0\0\4\0\a\0\0146\0\0\0'\2\1\0B\0\2\0029\0\2\0006\1\0\0'\3\3\0B\1\2\0029\1\4\0015\3\5\0B\1\2\1\18\1\0\0005\3\6\0B\1\2\1K\0\1\0\1\4\0\0\6v\14gw{lua require'gitlinker'.get_buf_range_url('n', {action_callback = require'gitlinker.actions'.open_in_browser})\1\0\1\rmappings\14gy\nsetup\14gitlinker\bmap\15axie.utils\frequire\0", "config", "gitlinker.nvim") time([[Config for gitlinker.nvim]], false) -- Config for: onedarkpro.nvim time([[Config for onedarkpro.nvim]], true) try_loadstring("\27LJ\2\nÓ\1\0\0\4\0\f\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\0024\3\0\0=\3\b\0024\3\0\0=\3\t\0025\3\n\0=\3\v\2B\0\2\1K\0\1\0\foptions\1\0\1\17transparency\2\vstyles\rhlgroups\fplugins\1\0\1\rpolyglot\1\vcolors\1\0\0\1\0\2\16dark_purple\f#8a3fa0\fbg_blue\f#73b8f1\nsetup\15onedarkpro\frequire\0", "config", "onedarkpro.nvim") time([[Config for onedarkpro.nvim]], false) -- Config for: barbar.nvim time([[Config for barbar.nvim]], true) try_loadstring("\27LJ\2\n¤\v\0\0\4\0\31\0O6\0\0\0'\2\1\0B\0\2\0029\0\2\0\18\1\0\0005\3\3\0B\1\2\1\18\1\0\0005\3\4\0B\1\2\1\18\1\0\0005\3\5\0B\1\2\1\18\1\0\0005\3\6\0B\1\2\1\18\1\0\0005\3\a\0B\1\2\1\18\1\0\0005\3\b\0B\1\2\1\18\1\0\0005\3\t\0B\1\2\1\18\1\0\0005\3\n\0B\1\2\1\18\1\0\0005\3\v\0B\1\2\1\18\1\0\0005\3\f\0B\1\2\1\18\1\0\0005\3\r\0B\1\2\1\18\1\0\0005\3\14\0B\1\2\1\18\1\0\0005\3\15\0B\1\2\1\18\1\0\0005\3\16\0B\1\2\1\18\1\0\0005\3\17\0B\1\2\1\18\1\0\0005\3\18\0B\1\2\1\18\1\0\0005\3\19\0B\1\2\1\18\1\0\0005\3\20\0B\1\2\1\18\1\0\0005\3\21\0B\1\2\1\18\1\0\0005\3\22\0B\1\2\1\18\1\0\0005\3\23\0B\1\2\1\18\1\0\0005\3\24\0B\1\2\0016\1\25\0009\1\26\0015\2\28\0004\3\0\0=\3\29\0024\3\0\0=\3\30\2=\2\27\1K\0\1\0\17exclude_name\15exclude_ft\1\0\17\rclosable\2\rtabpages\2\14auto_hide\1\14animation\2\fletters:asdfjkl;ghnmxcvbziowerutyqpASDFJKLGHNMXCVBZIOWERUTYQP\21semantic_letters\2\19maximum_length\3\30\20maximum_padding\3\1\18insert_at_end\1\16icon_pinned\b車\28icon_close_tab_modified\b●\19icon_close_tab\b\28icon_separator_inactive\b▎\26icon_separator_active\b▎\23icon_custom_colors\1\nicons\2\14clickable\2\15bufferline\6g\bvim\1\4\0\0\6n\15bw#:BufferOrderByWindowNumber\1\4\0\0\6n\15bl\31:BufferOrderByLanguage\1\4\0\0\6n\15bd :BufferOrderByDirectory\1\4\0\0\6n\15bb#:BufferOrderByBufferNumber\1\4\0\0\6n\n\24:BufferMoveNext\1\4\0\0\6n\n\28:BufferMovePrevious\1\4\0\0\6n\n\20:BufferLast\1\4\0\0\6n\n\22:BufferGoto 9\1\4\0\0\6n\n\22:BufferGoto 8\1\4\0\0\6n\n\22:BufferGoto 7\1\4\0\0\6n\n\22:BufferGoto 6\1\4\0\0\6n\n\22:BufferGoto 5\1\4\0\0\6n\n\22:BufferGoto 4\1\4\0\0\6n\n\22:BufferGoto 3\1\4\0\0\6n\n\22:BufferGoto 2\1\4\0\0\6n\n\22:BufferGoto 1\1\4\0\0\6n\n\20:BufferPick\1\4\0\0\6n\n\19:BufferPin\1\4\0\0\6n\n\22:BufferClose!\1\4\0\0\6n\n\21:BufferClose\1\4\0\0\6n\f\24:BufferPrevious\1\4\0\0\6n\n\20:BufferNext\bmap\15axie.utils\frequire\0", "config", "barbar.nvim") time([[Config for barbar.nvim]], false) -- Config for: gitsigns.nvim time([[Config for gitsigns.nvim]], true) try_loadstring("\27LJ\2\nÐ\3\0\0\5\0\r\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\b\0005\3\4\0005\4\3\0=\4\5\0035\4\6\0=\4\a\3=\3\t\2B\0\2\0016\0\n\0009\0\v\0'\2\f\0B\0\2\1K\0\1\0-highlight link GitSignsDeleteLn ErrorMsg\bcmd\bvim\fkeymaps\1\0\2\nnumhl\2\15signcolumn\1\tn [g\1\2\1\0H&diff ? '[g' : 'lua require\"gitsigns.actions\".prev_hunk()'\texpr\2\tn ]g\1\0\2\tx ih::lua require\"gitsigns.actions\".select_hunk()\to ih::lua require\"gitsigns.actions\".select_hunk()\1\2\1\0H&diff ? ']g' : 'lua require\"gitsigns.actions\".next_hunk()'\texpr\2\nsetup\rgitsigns\frequire\0", "config", "gitsigns.nvim") time([[Config for gitsigns.nvim]], false) -- Config for: nvim-biscuits time([[Config for nvim-biscuits]], true) try_loadstring("\27LJ\2\n»\1\0\0\4\0\b\0\v6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\2B\0\2\1K\0\1\0\19default_config\1\0\3\18prefix_string\n ﬌ \17min_distance\3\4\15max_length\3\24\14on_events\1\0\0\1\3\0\0\16CursorMoved\17CursorMovedI\nsetup\18nvim-biscuits\frequire\0", "config", "nvim-biscuits") time([[Config for nvim-biscuits]], false) -- Config for: better-escape.nvim time([[Config for better-escape.nvim]], true) try_loadstring("\27LJ\2\n\\\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\fmapping\1\0\0\1\3\0\0\ajk\akj\nsetup\18better_escape\frequire\0", "config", "better-escape.nvim") time([[Config for better-escape.nvim]], false) -- Config for: tabular time([[Config for tabular]], true) try_loadstring("\27LJ\2\nŠ\1\0\0\4\0\4\0\b6\0\0\0'\2\1\0B\0\2\0029\0\2\0\18\1\0\0005\3\3\0B\1\2\1K\0\1\0\1\4\0\0\6i\6|H|:lua require('axie.plugins.tabular').md_cucumber_table()a\bmap\15axie.utils\frequire\0", "config", "tabular") time([[Config for tabular]], false) -- Config for: orgmode time([[Config for orgmode]], true) try_loadstring("\27LJ\2\nÌ\1\0\0\6\0\v\0\0156\0\0\0'\2\1\0B\0\2\0029\1\2\0B\1\1\0019\1\3\0005\3\5\0005\4\4\0=\4\6\0035\4\b\0005\5\a\0=\5\t\4=\4\n\3B\1\2\1K\0\1\0\rmappings\vglobal\1\0\0\1\0\2\15org_agenda\14oa\16org_capture\14oc\20org_agenda_file\1\0\0\1\2\0\0\14~/wiki/**\nsetup\21setup_ts_grammar\forgmode\frequire\0", "config", "orgmode") time([[Config for orgmode]], false) -- Config for: dim.lua time([[Config for dim.lua]], true) try_loadstring("\27LJ\2\n1\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\bdim\frequire\0", "config", "dim.lua") time([[Config for dim.lua]], false) -- Config for: vim-caser time([[Config for vim-caser]], true) try_loadstring("\27LJ\2\n1\0\0\2\0\4\0\0056\0\0\0009\0\1\0'\1\3\0=\1\2\0K\0\1\0\acR\17caser_prefix\6g\bvim\0", "config", "vim-caser") time([[Config for vim-caser]], false) -- Config for: hlargs.nvim time([[Config for hlargs.nvim]], true) try_loadstring("\27LJ\2\nI\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\ncolor\f#F2CDCD\nsetup\vhlargs\frequire\0", "config", "hlargs.nvim") time([[Config for hlargs.nvim]], false) -- Config for: null-ls.nvim time([[Config for null-ls.nvim]], true) try_loadstring("\27LJ\2\nú\2\0\0\a\0\15\1+6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\5\0006\3\0\0'\5\3\0B\3\2\0029\3\4\3B\3\1\2>\3\1\0026\3\0\0'\5\3\0B\3\2\0029\3\5\3B\3\1\2>\3\2\0026\3\0\0'\5\3\0B\3\2\0029\3\6\3B\3\1\2>\3\3\0026\3\0\0'\5\3\0B\3\2\0029\3\a\3B\3\1\0?\3\0\0B\0\2\0026\1\0\0'\3\b\0B\1\2\0029\1\t\0015\3\n\0=\0\v\0036\4\0\0'\6\f\0B\4\2\0029\4\r\4=\4\14\3B\1\2\1K\0\1\0\14on_attach\22default_on_attach\21axie.lsp.install\fsources\1\0\0\nsetup\fnull-ls\18hover_sources\24code_action_sources\23diagnostic_sources\23formatting_sources\18axie.lsp.null\22list_flatten_once\15axie.utils\frequire\t€€À™\4\0", "config", "null-ls.nvim") time([[Config for null-ls.nvim]], false) -- Config for: copilot.vim time([[Config for copilot.vim]], true) try_loadstring("\27LJ\2\nÚ\1\0\0\4\0\b\0\0156\0\0\0'\2\1\0B\0\2\0029\0\2\0\18\1\0\0005\3\3\0B\1\2\1\18\1\0\0005\3\4\0B\1\2\0016\1\5\0009\1\6\1+\2\2\0=\2\a\1K\0\1\0\23copilot_no_tab_map\6g\bvim\1\4\3\0\6i\n\22copilot#Dismiss()\vscript\2\texpr\2\vsilent\2\1\4\3\0\6i\n\21copilot#Accept()\vscript\2\texpr\2\vsilent\2\bmap\15axie.utils\frequire\0", "config", "copilot.vim") time([[Config for copilot.vim]], false) -- Config for: fidget.nvim time([[Config for fidget.nvim]], true) try_loadstring("\27LJ\2\ne\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\vwindow\1\0\0\1\0\2\rrelative\veditor\nblend\3\0\nsetup\vfidget\frequire\0", "config", "fidget.nvim") time([[Config for fidget.nvim]], false) -- Config for: impatient.nvim time([[Config for impatient.nvim]], true) try_loadstring("\27LJ\2\n@\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\1\2\0B\1\1\1K\0\1\0\19enable_profile\14impatient\frequire\0", "config", "impatient.nvim") time([[Config for impatient.nvim]], false) -- Config for: octo.nvim time([[Config for octo.nvim]], true) 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\tocto\frequire\0", "config", "octo.nvim") time([[Config for octo.nvim]], false) -- Config for: neoscroll.nvim time([[Config for neoscroll.nvim]], true) try_loadstring("\27LJ\2\n7\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\14neoscroll\frequire\0", "config", "neoscroll.nvim") time([[Config for neoscroll.nvim]], false) -- Config for: nvim-notify time([[Config for nvim-notify]], true) try_loadstring("\27LJ\2\n\v\0\1\1\0\0\0\1K\0\1\0y\1\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0003\3\4\0=\3\5\2B\0\2\1K\0\1\0\fon_open\0\1\0\2\vrender\fminimal\22background_colour\16NormalFloat\nsetup\vnotify\frequire\0", "config", "nvim-notify") time([[Config for nvim-notify]], false) -- Config for: vim-mundo time([[Config for vim-mundo]], true) try_loadstring("\27LJ\2\n¼\3\0\0\3\0\6\0\r6\0\0\0009\0\1\0)\1\0\0=\1\2\0006\0\0\0009\0\1\0)\1d\0=\1\3\0006\0\0\0009\0\4\0'\2\5\0B\0\2\1K\0\1\0Ì\2 if has(\"persistent_undo\")\n let target_path = expand('~/.undodir')\n\n \" create the directory and any parent directories\n \" if the location does not exist.\n if !isdirectory(target_path)\n call mkdir(target_path, \"p\", 0700)\n endif\n\n let &undodir=target_path\n set undofile\n endif\n \bcmd\25mundo_playback_delay\29mundo_auto_preview_delay\6g\bvim\0", "config", "vim-mundo") time([[Config for vim-mundo]], false) -- Config for: nvim-lightbulb time([[Config for nvim-lightbulb]], true) try_loadstring("\27LJ\2\nœ\2\0\0\4\0\r\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\0025\3\b\0=\3\t\2B\0\2\0016\0\n\0009\0\v\0'\2\f\0B\0\2\1K\0\1\0Rautocmd CursorHold,CursorHoldI * lua require'axie.plugins.lightbulb'.update()\bcmd\bvim\16status_text\1\0\2\fenabled\2\ttext\30 Code Action Available\tsign\1\0\1\fenabled\1\vignore\1\0\0\1\2\0\0\fnull-ls\nsetup\19nvim-lightbulb\frequire\0", "config", "nvim-lightbulb") time([[Config for nvim-lightbulb]], false) -- Config for: nightfox.nvim time([[Config for nightfox.nvim]], true) try_loadstring("\27LJ\2\n:\0\0\4\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\1\2\0004\3\0\0B\1\2\1K\0\1\0\nsetup\rnightfox\frequire\0", "config", "nightfox.nvim") time([[Config for nightfox.nvim]], false) -- Config for: nvim-regexplainer time([[Config for nvim-regexplainer]], true) try_loadstring("\27LJ\2\nÞ\1\0\0\6\0\14\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\a\0005\4\5\0005\5\4\0=\5\6\4=\4\b\0035\4\t\0=\4\n\3=\3\v\0025\3\f\0=\3\r\2B\0\2\1K\0\1\0\rmappings\1\0\1\vtoggle\agR\npopup\16win_options\1\0\1\rwinblend\3\20\vborder\1\0\0\fpadding\1\0\1\nstyle\frounded\1\3\0\0\3\0\3\0\1\0\2\fdisplay\npopup\tauto\1\nsetup\17regexplainer\frequire\0", "config", "nvim-regexplainer") time([[Config for nvim-regexplainer]], false) -- Config for: kanagawa.nvim time([[Config for kanagawa.nvim]], true) try_loadstring("\27LJ\2\næ\1\0\0\a\0\15\0\0246\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\0026\1\0\0'\3\3\0B\1\2\0029\1\2\0015\3\4\0005\4\b\0005\5\6\0009\6\5\0=\6\a\5=\5\t\0045\5\n\0009\6\a\0=\6\a\0059\6\v\0=\6\f\5=\5\r\4=\4\14\3B\1\2\1K\0\1\0\14overrides\16NormalFloat\abg\rsumiInk2\1\0\0\14VertSplit\1\0\0\afg\1\0\1\abg\tNONE\fbg_dark\1\0\1\16transparent\2\rkanagawa\nsetup\20kanagawa.colors\frequire\0", "config", "kanagawa.nvim") time([[Config for kanagawa.nvim]], false) -- Config for: telescope.nvim time([[Config for telescope.nvim]], true) try_loadstring("\27LJ\2\nH\0\1\4\1\4\0\b-\1\0\0009\1\0\0019\1\1\0019\1\1\0015\3\2\0=\0\3\3B\1\2\1K\0\1\0\0\0\bcwd\1\0\0\17file_browser\15extensions)\1\1\5\1\3\0\0056\1\0\0003\3\1\0009\4\2\0B\1\3\1K\0\1\0\0À\tpath\0\npcall«\5\1\0\a\0%\0A6\0\0\0'\2\1\0B\0\2\0029\1\2\0005\3\n\0005\4\3\0005\5\5\0005\6\4\0=\6\6\0055\6\a\0=\6\b\5=\5\t\4=\4\v\0035\4\15\0005\5\r\0005\6\f\0=\6\14\5=\5\16\4=\4\17\3B\1\2\0016\1\0\0'\3\18\0B\1\2\0029\1\2\0015\3\24\0005\4\22\0005\5\19\0003\6\20\0=\6\21\5=\5\23\4=\4\25\3B\1\2\0019\1\26\0'\3\27\0B\1\2\0019\1\26\0'\3\28\0B\1\2\0019\1\26\0'\3\16\0B\1\2\0019\1\26\0'\3\29\0B\1\2\0019\1\26\0'\3\30\0B\1\2\0019\1\26\0'\3\31\0B\1\2\0019\1\26\0'\3 \0B\1\2\0019\1\26\0'\3!\0B\1\2\0019\1\26\0'\3\"\0B\1\2\0016\1#\0009\3\26\0'\4$\0B\1\3\0012\0\0€K\0\1\0\furlview\npcall\15termfinder\vaerial\vnotify\vzoxide\benv\17file_browser\bdap\bfzf\19load_extension\rmappings\1\0\0\n\1\0\0\vaction\0\1\0\1\15keepinsert\2(telescope._extensions.zoxide.config\15extensions\16media_files\1\0\0\14filetypes\1\0\1\rfind_cmd\arg\1\6\0\0\bpng\bjpg\bmp4\twebm\bpdf\rdefaults\1\0\0\18layout_config\rvertical\1\0\1\20prompt_position\btop\15horizontal\1\0\0\1\0\2\20prompt_position\btop\18preview_width\4æ̙³\6æ̙ÿ\3\1\0\1\21sorting_strategy\14ascending\nsetup\14telescope\frequire\0", "config", "telescope.nvim") time([[Config for telescope.nvim]], false) -- Config for: lsp_signature.nvim time([[Config for lsp_signature.nvim]], true) try_loadstring("\27LJ\2\n§\1\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0=\3\5\2B\0\2\1K\0\1\0\17handler_opts\1\0\1\vborder\frounded\1\0\4\fpadding\6 \19always_trigger\ttrue\15toggle_key\n\17transparency\3\20\nsetup\18lsp_signature\frequire\0", "config", "lsp_signature.nvim") time([[Config for lsp_signature.nvim]], false) -- Config for: run-code.nvim time([[Config for run-code.nvim]], true) try_loadstring("\27LJ\2\nÕ\1\0\0\4\0\b\0\0156\0\0\0'\2\1\0B\0\2\0029\0\2\0\18\1\0\0005\3\3\0B\1\2\1\18\1\0\0005\3\4\0B\1\2\0016\1\5\0009\1\6\1'\3\a\0B\1\2\1K\0\1\0007au FileType markdown nmap \\r RunCodeBlock\bcmd\bvim\1\4\0\0\6n\a\\r\25RunCodeFile\1\4\0\0\6v\a\\r\29RunCodeSelected\bmap\15axie.utils\frequire\0", "config", "run-code.nvim") time([[Config for run-code.nvim]], false) -- Config for: neogen time([[Config for neogen]], true) try_loadstring("\27LJ\2\nR\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\19snippet_engine\fluasnip\nsetup\vneogen\frequire\0", "config", "neogen") time([[Config for neogen]], false) -- Config for: nvim-cmp time([[Config for nvim-cmp]], true) try_loadstring("\27LJ\2\n-\2\0\4\1\2\0\5-\0\0\0009\0\0\0G\2\0\0025\3\1\0D\0\3\0\0À\1\3\0\0\6i\6c\fmapping;\0\1\4\0\4\0\0066\1\0\0009\1\1\0019\1\2\0019\3\3\0B\1\2\1K\0\1\0\tbody\20vsnip#anonymous\afn\bvimT\0\0\2\1\3\0\r-\0\0\0009\0\0\0B\0\1\2\15\0\0\0X\1\4€-\0\0\0009\0\1\0B\0\1\1X\0\3€-\0\0\0009\0\2\0B\0\1\1K\0\1\0\0À\rcomplete\nabort\fvisibleT\0\0\2\1\3\0\r-\0\0\0009\0\0\0B\0\1\2\15\0\0\0X\1\4€-\0\0\0009\0\1\0B\0\1\1X\0\3€-\0\0\0009\0\2\0B\0\1\1K\0\1\0\0À\rcomplete\nclose\fvisibleR\0\1\3\1\2\0\f-\1\0\0009\1\0\1B\1\1\2\15\0\1\0X\2\4€-\1\0\0009\1\1\1B\1\1\1X\1\2€\18\1\0\0B\1\1\1K\0\1\0\0À\21select_next_item\fvisibleR\0\1\3\1\2\0\f-\1\0\0009\1\0\1B\1\1\2\15\0\1\0X\2\4€-\1\0\0009\1\1\1B\1\1\1X\1\2€\18\1\0\0B\1\1\1K\0\1\0\0À\21select_prev_item\fvisiblew\0\2\5\2\a\0\16-\2\0\0009\3\0\0009\3\1\0038\2\3\0029\3\2\2\14\0\3\0X\4\5€-\3\1\0009\3\3\0039\3\4\0039\4\2\0018\3\4\3=\3\2\0019\3\6\2=\3\5\1L\1\2\0\2À\1À\nlabel\tmenu\fdefault\fpresets\tkind\tname\vsourceœ\25\1\0\22\1˜\1\0¾\0026\0\0\0009\0\1\0'\1\3\0=\1\2\0006\0\4\0'\2\5\0B\0\2\0026\1\4\0'\3\6\0B\1\2\0026\2\0\0009\2\a\0025\3\t\0=\3\b\0025\2\v\0005\3\n\0=\3\f\0025\3\r\0=\3\14\0025\3\15\0=\3\16\0025\3\17\0=\3\18\0025\3\19\0=\3\20\0025\3\21\0=\3\22\0025\3\23\0=\3\24\0025\3\25\0=\3\26\0025\3\27\0=\3\28\0025\3\29\0=\3\30\0025\3\31\0=\3 \0025\3!\0=\3\"\0025\3#\0=\3$\0024\3\0\0006\4%\0\18\6\2\0B\4\2\4H\a\v€6\t&\0009\t'\t\18\v\3\0005\f(\0=\a)\f9\r*\b\14\0\r\0X\14\1€-\r\0\0=\r*\fB\t\3\1F\a\3\3R\aó3\4+\0009\5,\0005\a0\0005\b.\0003\t-\0=\t/\b=\b1\a5\b4\0\18\t\4\0009\v2\0009\v3\v)\rüÿB\v\2\0A\t\0\2=\t5\b\18\t\4\0009\v2\0009\v3\v)\r\4\0B\v\2\0A\t\0\2=\t6\b\18\t\4\0009\v2\0009\v7\vB\v\1\0A\t\0\2=\t8\b9\t2\0005\v:\0009\f2\0009\f9\fB\f\1\2=\f;\v9\f2\0009\f<\fB\f\1\2=\f=\vB\t\2\2=\t>\b\18\t\4\0009\v2\0009\v?\v5\rB\0009\14@\0009\14A\14=\14C\rB\v\2\0A\t\0\2=\tD\b\18\t\4\0009\v2\0009\v?\v5\rF\0009\14@\0009\14E\14=\14C\rB\v\2\0A\t\0\2=\tG\b9\t2\0005\vI\0003\fH\0=\f;\v3\fJ\0=\f=\vB\t\2\2=\tK\b\18\t\4\0003\vL\0B\t\2\2=\tM\b\18\t\4\0003\vN\0B\t\2\2=\tO\b=\b2\a=\3P\a5\bR\0003\tQ\0=\tS\b=\bT\a5\b`\0004\t\t\0009\nU\0009\nV\n9\nW\n>\n\1\t9\nU\0009\nV\n9\nX\n>\n\2\t9\nU\0009\nV\n9\nY\n>\n\3\t6\n\4\0'\fZ\0B\n\2\0029\n[\n>\n\4\t9\nU\0009\nV\n9\n\\\n>\n\5\t9\nU\0009\nV\n9\n]\n>\n\6\t9\nU\0009\nV\n9\n^\n>\n\a\t9\nU\0009\nV\n9\n_\n>\n\b\t=\ta\b=\bb\a5\bc\0=\bd\aB\5\2\0016\5\4\0'\ae\0B\5\2\0029\5,\0054\a\0\0B\5\2\0016\5\4\0'\a \0B\5\2\0029\5,\0055\ag\0005\bf\0=\bh\aB\5\2\0016\5\4\0'\ai\0B\5\2\0029\5,\0055\aj\0004\b\0\0=\bk\aB\5\2\0016\5\4\0'\al\0B\5\2\0029\6m\0\18\b\6\0009\6n\6'\to\0009\np\5B\n\1\0A\6\2\0019\6,\0009\6\"\6'\bq\0005\ts\0004\n\3\0005\vr\0>\v\1\n=\nP\tB\6\3\0019\6,\0009\6\"\6'\bt\0005\tv\0009\nU\0009\nP\n4\f\3\0005\ru\0>\r\1\f4\r\0\0B\n\3\2=\nP\tB\6\3\0014\6\26\0005\aw\0>\a\1\0065\ax\0>\a\2\0065\ay\0>\a\3\0065\az\0>\a\4\0065\a{\0>\a\5\0065\a|\0>\a\6\0065\a}\0>\a\a\0065\a~\0>\a\b\0065\a\0>\a\t\0065\a€\0>\a\n\0065\a\0>\a\v\0065\a‚\0>\a\f\0065\aƒ\0>\a\r\0065\a„\0>\a\14\0065\a…\0>\a\15\0065\a†\0>\a\16\0065\a‡\0>\a\17\0065\aˆ\0>\a\18\0065\a‰\0>\a\19\0065\aŠ\0>\a\20\0065\a‹\0>\a\21\0065\aŒ\0>\a\22\0065\a\0>\a\23\0065\aŽ\0>\a\24\0065\a\0>\a\25\6+\a\1\0006\b\0\18\n\6\0B\b\2\4X\v\23€6\r‘\0\18\15\f\0B\r\2\0036\15\4\0'\17’\0B\15\2\0029\15“\15\18\17\a\0\18\18\r\0'\19”\0&\18\19\18\18\19\r\0B\15\4\2\18\r\15\0006\15\0\0009\15•\0156\17–\0009\17S\17'\19—\0\18\20\r\0\18\21\14\0B\17\4\0A\15\0\1E\v\3\3R\vç2\0\0€K\0\1\0\0À\25highlight link %s %s\vstring\bcmd\fDefault\fternary\15axie.utils\vunpack\vipairs\1\3\0\0\29CmpItemKindTypeParameter\16TSParameter\1\3\0\0\22CmpItemKindStruct\16TSStructure\1\3\0\0\24CmpItemKindConstant\15TSConstant\1\3\0\0\26CmpItemKindEnumMember\fTSField\1\3\0\0\21CmpItemKindEvent\15TSConstant\1\3\0\0\22CmpItemKindFolder\nTSURI\1\3\0\0\20CmpItemKindFile\nTSURI\1\3\0\0\21CmpItemKindColor\rcssColor\1\3\0\0\23CmpItemKindSnippet\vTSText\1\3\0\0\23CmpItemKindKeyword\14TSKeyword\1\3\0\0\20CmpItemKindEnum\fTSField\1\3\0\0\21CmpItemKindField\fTSField\1\3\0\0\21CmpItemKindValue\fTSField\1\3\0\0\20CmpItemKindUnit\fTSField\1\3\0\0\25CmpItemKindReference\25TSParameterReference\1\3\0\0\24CmpItemKindOperator\15TSOperator\1\3\0\0\24CmpItemKindProperty\15TSProperty\1\3\0\0\22CmpItemKindModule\16TSNamespace\1\3\0\0\25CmpItemKindInterface\vTSType\1\3\0\0\21CmpItemKindClass\vTSType\1\3\0\0\24CmpItemKindVariable\15TSVariable\1\3\0\0\27CmpItemKindConstructor\vTSType\1\3\0\0\24CmpItemKindFunction\15TSFunction\1\3\0\0\20CmpItemKindText\vTSText\1\3\0\0\22CmpItemKindMethod\rTSMethod\1\0\0\1\0\1\tname\tpath\6:\1\0\0\1\0\1\tname\vbuffer\6/\20on_confirm_done\17confirm_done\aon\nevent\"nvim-autopairs.completion.cmp\14fast_wrap\1\0\0\19nvim-autopairs\14filetypes\1\0\0\1\2\0\0\6*\fcmp-npm\17experimental\1\0\1\15ghost_text\2\fsorting\16comparators\1\0\0\norder\vlength\14sort_text\tkind\nunder\25cmp-under-comparator\nscore\nexact\voffset\fcompare\vconfig\15formatting\vformat\1\0\0\0\fsources\f\0\n\0\n\0\1\0\0\0\v\1\0\1\vselect\1\fReplace\t\rbehavior\1\0\1\vselect\1\vInsert\20ConfirmBehavior\fconfirm\n\6c\nclose\6i\1\0\0\nabort\14\rcomplete\n\n\1\0\0\16scroll_docs\fmapping\fsnippet\1\0\0\vexpand\1\0\0\0\nsetup\0\rpriority\tname\1\0\0\vinsert\ntable\npairs\forgmode\1\0\1\nlabel\n[Org]\fcmdline\1\0\1\nlabel\n[Cmd]\fcmp_git\1\0\1\nlabel\n[Git]\bnpm\1\0\1\nlabel\n[NPM]\18latex_symbols\1\0\1\nlabel\f[LaTeX]\nspell\1\0\2\rpriority\3\1\nlabel\f[Spell]\nemoji\1\0\1\nlabel\f[Emoji]\tcalc\1\0\1\nlabel\v[Calc]\tpath\1\0\1\nlabel\v[Path]\nvsnip\1\0\2\rpriority\3\5\nlabel\f[Vsnip]\vbuffer\1\0\2\rpriority\3\1\nlabel\r[Buffer]\rnvim_lua\1\0\2\rpriority\3\3\nlabel\n[Lua]\rnvim_lsp\1\0\0\1\0\2\rpriority\3\3\nlabel\n[LSP]\1\4\0\0\tmenu\fmenuone\rnoselect\16completeopt\bopt\flspkind\bcmp\frequire$~/.config/nvim/lua/lsp/snippets\22vsnip_snippet_dir\6g\bvim\0", "config", "nvim-cmp") time([[Config for nvim-cmp]], false) -- Config for: nvim-treesitter time([[Config for nvim-treesitter]], true) try_loadstring("\27LJ\2\n \14\0\0\t\0@\0T6\0\0\0'\2\1\0B\0\2\0029\0\2\0006\1\0\0'\3\3\0B\1\2\0029\1\4\1B\1\1\0025\2\t\0005\3\6\0005\4\a\0=\4\b\3=\3\n\2=\2\5\0016\2\0\0'\4\3\0B\2\2\0029\2\v\2B\2\1\0026\3\f\0009\3\r\3\18\5\2\0005\6\14\0B\3\3\0016\3\0\0'\5\15\0B\3\2\0029\3\16\0035\5\17\0=\2\18\0055\6\19\0005\a\20\0=\a\21\0065\a\22\0=\a\23\6=\6\24\0055\6\25\0005\a\26\0=\a\21\6=\6\27\0055\6\28\0005\a\29\0=\a\30\6=\6\31\0055\6 \0=\6!\0055\6\"\0=\6#\0055\6)\0005\a$\0005\b%\0=\b&\a5\b'\0=\b(\a=\a*\0065\a+\0005\b,\0=\b\30\a=\a-\0065\a.\0005\b/\0=\b0\a=\a1\6=\0062\0055\0063\0005\a4\0=\a\30\6=\0065\0055\0066\0=\0067\0055\0068\0=\0069\0055\6:\0=\6;\0055\6<\0=\6=\5B\3\2\1\18\3\0\0006\5\f\0009\5>\0055\6?\0B\3\3\1K\0\1\0\1\0\4\rfoldexpr\31nvim_treesitter#foldexpr()\15foldmethod\texpr\15foldenable\1\14foldlevel\3\0\6o\fmatchup\1\0\2\25disable_virtual_text\2\venable\2\26context_commentstring\1\0\2\19enable_autocmd\1\venable\2\frainbow\1\0\3\19max_file_lines\3è\a\18extended_mode\2\venable\2\fautotag\1\0\1\venable\2\17textsubjects\1\0\2\v!textsubjects-container-outer\t\23textsubjects-smart\1\0\1\venable\2\16textobjects\16lsp_interop\25peek_definition_code\1\0\4\agP\17@class.outer\14lP\17@class.outer\agp\20@function.outer\14lp\20@function.outer\1\0\1\venable\2\vselect\1\0\r\aal\16@loop.outer\aaf\20@function.outer\aic\17@class.inner\ail\16@loop.inner\aiq\21@parameter.inner\aii\23@conditional.inner\aaq\21@parameter.outer\aab\17@block.outer\aag\19@comment.outer\aib\17@block.inner\aif\20@function.inner\aac\17@class.outer\aai\23@conditional.outer\1\0\2\14lookahead\2\venable\2\tmove\1\0\0\20goto_next_start\1\0\1\a]]\21@parameter.inner\24goto_previous_start\1\0\1\a[[\21@parameter.inner\1\0\2\14set_jumps\2\venable\2\17query_linter\1\0\2\21use_virtual_text\2\venable\2\15playground\1\0\1\venable\2\26incremental_selection\fkeymaps\1\0\4\21node_incremental\a,m\19init_selection\a,,\22scope_incremental\a,,\21node_decremental\a,n\1\0\1\venable\2\vindent\1\2\0\0\vpython\1\0\1\vindent\2\14highlight&additional_vim_regex_highlighting\1\2\0\0\borg\fdisable\1\2\0\0\borg\1\0\1\venable\2\21ensure_installed\1\0\0\nsetup\28nvim-treesitter.configs\1\2\0\0\borg\16list_extend\bvim\22available_parsers\17install_info\1\0\1\rfiletype\borg\nfiles\1\3\0\0\17src/parser.c\19src/scanner.cc\1\0\2\rrevision-f110024d539e676f25b72b7c80b0fd43c34264ef\burl0https://github.com/milisims/tree-sitter-org\borg\23get_parser_configs\28nvim-treesitter.parsers\14vim_apply\15axie.utils\frequire\0", "config", "nvim-treesitter") time([[Config for nvim-treesitter]], false) -- Config for: nvim-lsp-installer time([[Config for nvim-lsp-installer]], true) try_loadstring("\27LJ\2\nû\2\0\0\3\0\b\0\0196\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\0016\0\0\0'\2\1\0B\0\2\0029\0\3\0B\0\1\0016\0\4\0009\0\5\0'\2\6\0B\0\2\0016\0\4\0009\0\5\0'\2\a\0B\0\2\1K\0\1\0o au FileType markdown nnoremap \\g lua require'axie.lsp.install'.toggle_grammarly()\n p augroup javalsp\n au!\n au FileType java lua require'axie.lsp.install'.setup_jdtls()\n augroup end\n \bcmd\bvim\27setup_language_servers\29prepare_language_servers\21axie.lsp.install\frequire\0", "config", "nvim-lsp-installer") time([[Config for nvim-lsp-installer]], false) -- Config for: distant.nvim time([[Config for distant.nvim]], true) try_loadstring("\27LJ\2\nt\0\0\6\0\a\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\5\0006\3\0\0'\5\3\0B\3\2\0029\3\4\3B\3\1\2=\3\6\2B\0\2\1K\0\1\0\6*\1\0\0\17chip_default\21distant.settings\nsetup\fdistant\frequire\0", "config", "distant.nvim") time([[Config for distant.nvim]], false) -- Config for: symbols-outline.nvim time([[Config for symbols-outline.nvim]], true) try_loadstring("\27LJ\2\nh\0\0\2\0\4\0\0056\0\0\0009\0\1\0005\1\3\0=\1\2\0K\0\1\0\1\0\4\17auto_preview\1\15auto_close\2\vborder\frounded\rwinblend\3\15\20symbols_outline\6g\bvim\0", "config", "symbols-outline.nvim") time([[Config for symbols-outline.nvim]], false) -- Config for: nvim-treesitter-context time([[Config for nvim-treesitter-context]], true) try_loadstring("\27LJ\2\n|\0\0\5\0\b\0\v6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\6\0005\3\4\0005\4\3\0=\4\5\3=\3\a\2B\0\2\1K\0\1\0\rpatterns\1\0\0\rmarkdown\1\0\0\1\2\0\0\16atx_heading\nsetup\23treesitter-context\frequire\0", "config", "nvim-treesitter-context") time([[Config for nvim-treesitter-context]], false) -- Config for: vim-nightfly-guicolors time([[Config for vim-nightfly-guicolors]], true) try_loadstring("\27LJ\2\n5\0\0\2\0\3\0\0056\0\0\0009\0\1\0)\1\1\0=\1\2\0K\0\1\0\24nightflyTransparent\6g\bvim\0", "config", "vim-nightfly-guicolors") time([[Config for vim-nightfly-guicolors]], false) -- Config for: dracula.nvim time([[Config for dracula.nvim]], true) try_loadstring("\27LJ\2\n8\0\0\2\0\3\0\0056\0\0\0009\0\1\0+\1\2\0=\1\2\0K\0\1\0\27dracula_transparent_bg\6g\bvim\0", "config", "dracula.nvim") time([[Config for dracula.nvim]], false) -- Config for: pretty-fold.nvim time([[Config for pretty-fold.nvim]], true) try_loadstring("\27LJ\2\n¦\1\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\0016\0\0\0'\2\3\0B\0\2\0029\0\4\0005\2\5\0B\0\2\1K\0\1\0\1\4\0\0\6n\azK=lua require'pretty-fold.preview'.show_preview()\bmap\15axie.utils\nsetup\16pretty-fold\frequire\0", "config", "pretty-fold.nvim") time([[Config for pretty-fold.nvim]], false) -- Config for: nvim-colorizer.lua time([[Config for nvim-colorizer.lua]], true) try_loadstring("\27LJ\2\n7\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\14colorizer\frequire\0", "config", "nvim-colorizer.lua") time([[Config for nvim-colorizer.lua]], false) -- Config for: vim-matchup time([[Config for vim-matchup]], true) try_loadstring("\27LJ\2\nV\0\0\2\0\4\0\0056\0\0\0009\0\1\0005\1\3\0=\1\2\0K\0\1\0\1\0\1\vmethod\18status_manual!matchup_matchparen_offscreen\6g\bvim\0", "config", "vim-matchup") time([[Config for vim-matchup]], false) -- Config for: dressing.nvim time([[Config for dressing.nvim]], true) try_loadstring("\27LJ\2\nm\0\0\4\0\6\0\v6\0\0\0009\0\1\0009\0\2\0)\2\0\0'\3\3\0B\0\3\2\a\0\4\0X\0\2€5\0\5\0L\0\2\0K\0\1\0\1\0\1\fenabled\1\rneo-tree\rfiletype\24nvim_buf_get_option\bapi\bvim«\1\0\1\v\0\r\0\22:\1\2\0009\1\0\1\18\3\1\0009\1\1\1'\4\2\0'\5\3\0B\1\4\0026\2\4\0009\2\5\0029\2\6\2:\4\1\0B\2\2\0026\3\a\0009\3\b\3'\5\t\0\18\b\1\0009\6\1\1'\t\n\0'\n\v\0B\6\4\0029\a\f\2D\3\4\0\tname\a\\n\6\n\f%s\t[%s]\vformat\vstring\21get_client_by_id\blsp\bvim\t\\r\\n\a\r\n\tgsub\ntitle¨\1\1\0\6\0\14\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\6\0005\3\4\0003\4\3\0=\4\5\3=\3\a\0025\3\v\0005\4\t\0003\5\b\0=\5\n\4=\4\f\3=\3\r\2B\0\2\1K\0\1\0\vselect\25format_item_override\1\0\0\15codeaction\1\0\0\0\ninput\1\0\0\15get_config\1\0\0\0\nsetup\rdressing\frequire\0", "config", "dressing.nvim") time([[Config for dressing.nvim]], false) -- Config for: marks.nvim time([[Config for marks.nvim]], true) try_loadstring("\27LJ\2\n7\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\nmarks\frequire\0", "config", "marks.nvim") time([[Config for marks.nvim]], false) -- Config for: vim-doge time([[Config for vim-doge]], true) try_loadstring("\27LJ\2\n/\0\0\2\0\4\0\0056\0\0\0009\0\1\0'\1\3\0=\1\2\0K\0\1\0\5\17doge_mapping\6g\bvim\0", "config", "vim-doge") time([[Config for vim-doge]], false) -- Config for: vim-ultest time([[Config for vim-ultest]], true) try_loadstring("\27LJ\2\n†\1\0\0\2\0\a\0\r6\0\0\0009\0\1\0)\1\1\0=\1\2\0006\0\0\0009\0\1\0'\1\4\0=\1\3\0006\0\0\0009\0\1\0'\1\6\0=\1\5\0K\0\1\0\15gradletest\21test#java#runner\vpytest\23test#python#runner\19ultest_use_pty\6g\bvim\0", "config", "vim-ultest") time([[Config for vim-ultest]], false) -- Config for: toggleterm.nvim time([[Config for toggleterm.nvim]], true) try_loadstring("\27LJ\2\n‡\1\0\1\4\0\b\1\0179\1\0\0\a\1\1\0X\1\3€)\1\15\0L\1\2\0X\1\n€9\1\0\0\a\1\2\0X\1\a€6\1\3\0009\1\4\0016\3\5\0009\3\6\0039\3\a\3\24\3\0\3D\1\2\0K\0\1\0\fcolumns\6o\bvim\tceil\tmath\rvertical\15horizontal\14direction\1€€€ÿ\3ž\n\1\0\a\0%\1R6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0003\3\3\0=\3\5\0025\3\6\0006\4\a\0009\4\b\0046\6\t\0009\6\n\0069\6\v\6\24\6\0\6B\4\2\2=\4\f\0036\4\a\0009\4\b\0046\6\t\0009\6\n\0069\6\r\6\24\6\0\6B\4\2\2=\4\14\0035\4\15\0=\4\16\3=\3\17\2B\0\2\0016\0\t\0009\0\18\0'\2\19\0B\0\2\0016\0\0\0'\2\20\0B\0\2\0029\0\21\0\18\1\0\0005\3\22\0B\1\2\1\18\1\0\0005\3\23\0B\1\2\1\18\1\0\0005\3\24\0B\1\2\1\18\1\0\0005\3\25\0B\1\2\1\18\1\0\0005\3\26\0B\1\2\1\18\1\0\0005\3\27\0B\1\2\1\18\1\0\0005\3\28\0B\1\2\1\18\1\0\0005\3\29\0B\1\2\1\18\1\0\0005\3\30\0B\1\2\1\18\1\0\0005\3\31\0B\1\2\1\18\1\0\0005\3 \0B\1\2\1\18\1\0\0005\3!\0B\1\2\1\18\1\0\0005\3\"\0B\1\2\1\18\1\0\0005\3#\0B\1\2\1\18\1\0\0005\3$\0B\1\2\1K\0\1\0\1\4\0\0\6t\n'Telescope termfinder find\1\4\0\0\6i\n'Telescope termfinder find\1\4\0\0\6n\n'Telescope termfinder find\1\4\0\0\6t\t'4ToggleTerm direction=tab\1\4\0\0\6i\t'4ToggleTerm direction=tab\1\4\0\0\6n\t'4ToggleTerm direction=tab\1\4\0\0\6t\t,3ToggleTerm direction=vertical\1\4\0\0\6i\t,3ToggleTerm direction=vertical\1\4\0\0\6n\t,3ToggleTerm direction=vertical\1\4\0\0\6t\t.2ToggleTerm direction=horizontal\1\4\0\0\6i\t.2ToggleTerm direction=horizontal\1\4\0\0\6n\t.2ToggleTerm direction=horizontal\1\4\0\0\6t\t)1ToggleTerm direction=float\1\4\0\0\6i\t)1ToggleTerm direction=float\1\4\0\0\6n\t)1ToggleTerm direction=float\bmap\15axie.utilsMautocmd! TermOpen term://* lua require'axie.plugins.toggleterm'.attach()\bcmd\15float_opts\15highlights\1\0\1\vborder\16FloatBorder\vheight\nlines\nwidth\fcolumns\6o\bvim\tceil\tmath\1\0\1\vborder\vcurved\tsize\1\0\0\0\nsetup\15toggleterm\frequireµæ̙\19™³¦ÿ\3\0", "config", "toggleterm.nvim") time([[Config for toggleterm.nvim]], false) -- Config for: material.nvim time([[Config for material.nvim]], true) try_loadstring("\27LJ\2\n…\2\0\0\5\0\16\0\0196\0\0\0009\0\1\0'\1\3\0=\1\2\0006\0\4\0'\2\5\0B\0\2\0029\0\6\0005\2\a\0005\3\b\0=\3\t\0025\3\v\0005\4\n\0=\4\f\0035\4\r\0=\4\14\3=\3\15\2B\0\2\1K\0\1\0\22custom_highlights\20TelescopeNormal\1\0\1\abg\tNONE\31IndentBlanklineContextChar\1\0\0\1\0\1\afg\f#C678DD\fdisable\1\0\1\15background\2\1\0\1\fborders\2\nsetup\rmaterial\frequire\14palenight\19material_style\6g\bvim\0", "config", "material.nvim") time([[Config for material.nvim]], false) -- Config for: Comment.nvim time([[Config for Comment.nvim]], true) try_loadstring("\27LJ\2\n§\3\0\1\b\0\18\00006\1\0\0'\3\1\0B\1\2\2+\2\0\0009\3\2\0009\4\2\0019\4\3\4\5\3\4\0X\3\a€6\3\0\0'\5\4\0B\3\2\0029\3\5\3B\3\1\2\18\2\3\0X\3\16€9\3\6\0009\4\6\0019\4\a\4\4\3\4\0X\3\5€9\3\6\0009\4\6\0019\4\b\4\5\3\4\0X\3\6€6\3\0\0'\5\4\0B\3\2\0029\3\t\3B\3\1\2\18\2\3\0006\3\0\0'\5\n\0B\3\2\0029\3\v\0035\5\14\0009\6\2\0009\a\2\0019\a\f\a\5\6\a\0X\6\2€'\6\r\0X\a\1€'\6\15\0=\6\16\5=\2\17\5D\3\2\0\rlocation\bkey\16__multiline\1\0\0\14__default\tline\28calculate_commentstring&ts_context_commentstring.internal\30get_visual_start_location\6V\6v\fcmotion\24get_cursor_location#ts_context_commentstring.utils\nblock\nctype\18Comment.utils\frequirel\1\0\4\0\b\0\v6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0023\3\6\0=\3\a\2B\0\2\1K\0\1\0\rpre_hook\0\rmappings\1\0\0\1\0\1\rextended\2\nsetup\fComment\frequire\0", "config", "Comment.nvim") time([[Config for Comment.nvim]], false) -- Config for: catppuccin time([[Config for catppuccin]], true) try_loadstring("\27LJ\2\n\a\0\0\a\0&\00056\0\0\0'\2\1\0B\0\2\0029\1\2\0005\3\3\0005\4\4\0005\5\5\0=\5\6\0045\5\a\0=\5\b\4=\4\t\3B\1\2\0016\1\0\0'\3\n\0B\1\2\0029\1\v\1B\1\1\0029\2\f\0005\4\16\0005\5\14\0009\6\r\1=\6\15\5=\5\17\0045\5\18\0=\5\19\0045\5\21\0009\6\20\1=\6\22\5=\5\23\0045\5\24\0=\5\25\0045\5\27\0009\6\26\1=\6\22\5=\5\28\0045\5\29\0009\6\26\1=\6\22\5=\5\30\0045\5\31\0009\6\26\1=\6\22\5=\5 \0045\5!\0009\6\26\1=\6\22\5=\5\"\4B\2\2\0016\2#\0009\2$\2'\4%\0B\2\2\1K\0\1\0\27colorscheme catppuccin\bcmd\bvim\14SpellRare\1\0\1\nstyle\21italic,undercurl\15SpellLocal\1\0\1\nstyle\21italic,undercurl\rSpellCap\1\0\1\nstyle\21italic,undercurl\rSpellBad\1\0\1\nstyle\21italic,undercurl\bred\18WhichKeyFloat\1\0\1\tlink\16NormalFloat\17CursorLineNr\afg\1\0\0\fmagenta\16ColorColumn\1\0\1\tlink\15CursorLine\16NormalFloat\1\0\0\abg\1\0\0\vblack2\nremap\15get_colors\26catppuccin.api.colors\17integrations\21indent_blankline\1\0\2\fenabled\2\26colored_indent_levels\1\fneotree\1\0\3\fenabled\2\22transparent_panel\2\14show_root\1\1\0\19\rmarkdown\2\15bufferline\2\rgitsigns\2\14gitgutter\1\rlsp_saga\2\16lsp_trouble\2\vnotify\2\bcmp\2\14telescope\2\15telekasten\2\bhop\2\15ts_rainbow\2\15lightspeed\2\vbarbar\2\tfern\2\14vim_sneak\2\vneogit\2\14dashboard\2\14which_key\2\1\0\1\27transparent_background\2\nsetup\15catppuccin\frequire\0", "config", "catppuccin") time([[Config for catppuccin]], false) -- Config for: firenvim time([[Config for firenvim]], true) try_loadstring("\27LJ\2\nÌ\1\0\0\4\0\n\0\r6\0\0\0009\0\1\0005\1\6\0005\2\4\0005\3\3\0=\3\5\2=\2\a\1=\1\2\0006\0\0\0009\0\b\0'\2\t\0B\0\2\1K\0\1\0007au BufEnter github.com_*.txt set filetype=markdown\bcmd\18localSettings\1\0\0\a.*\1\0\0\1\0\3\tsync\vchange\fcmdline\vneovim\rtakeover\nnever\20firenvim_config\6g\bvim\0", "config", "firenvim") time([[Config for firenvim]], false) -- Config for: nvim-dap-ui time([[Config for nvim-dap-ui]], true) try_loadstring("\27LJ\2\nþ\1\0\0\5\0\r\0\0276\0\0\0'\2\1\0B\0\2\0029\1\2\0009\1\3\1'\2\5\0=\2\4\0016\1\0\0'\3\6\0B\1\2\0029\1\a\0014\3\0\0B\1\2\0016\1\0\0'\3\b\0B\1\2\0029\2\a\1'\4\t\0B\2\2\1'\2\v\0=\2\n\0016\2\0\0'\4\f\0B\2\2\0029\2\a\2B\2\1\1K\0\1\0\26nvim-dap-virtual-text\vpytest\16test_runner\20/usr/bin/python\15dap-python\nsetup\ndapui\01610split new\21terminal_win_cmd\rfallback\rdefaults\bdap\frequire\0", "config", "nvim-dap-ui") time([[Config for nvim-dap-ui]], false) -- Config for: tabout.nvim time([[Config for tabout.nvim]], true) try_loadstring("\27LJ\2\nî\1\0\0\4\0\b\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0B\0\2\0016\0\0\0'\2\4\0B\0\2\0029\0\5\0\18\1\0\0005\3\6\0B\1\2\1\18\1\0\0005\3\a\0B\1\2\1K\0\1\0\1\4\1\0\6i\n\28(TaboutBackMulti)\fnoremap\1\1\4\1\0\6i\n\24(TaboutMulti)\fnoremap\1\bmap\15axie.utils\1\0\3\15act_as_tab\1\21backwards_tabkey\5\vtabkey\5\nsetup\vtabout\frequire\0", "config", "tabout.nvim") time([[Config for tabout.nvim]], false) -- Config for: toggle-lsp-diagnostics.nvim time([[Config for toggle-lsp-diagnostics.nvim]], true) try_loadstring("\27LJ\2\nC\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\tinit\27toggle_lsp_diagnostics\frequire\0", "config", "toggle-lsp-diagnostics.nvim") time([[Config for toggle-lsp-diagnostics.nvim]], false) -- Config for: neo-tree.nvim time([[Config for neo-tree.nvim]], true) try_loadstring("\27LJ\2\n°\1\0\1\b\0\14\2\0246\1\0\0009\1\1\0019\1\2\0019\3\3\0'\4\4\0B\1\3\0026\2\5\0009\2\6\2\18\4\1\0B\2\2\2\22\2\0\0025\3\t\0006\4\a\0009\4\b\4\18\6\2\0)\a2\0B\4\3\2=\4\n\0036\4\0\0009\4\v\0049\4\f\4\23\4\1\4=\4\r\3L\3\2\0\vheight\nlines\6o\nwidth\1\0\0\bmax\tmath\blen\vstring\a:~\tpath\16fnamemodify\afn\bvim\b\f:\0\1\4\0\3\0\0066\1\0\0'\3\1\0B\1\2\0029\1\2\1B\1\1\1K\0\1\0\14close_all\rneo-tree\frequire…\1\0\0\4\0\a\0\r6\0\0\0009\0\1\0009\0\2\0)\2\0\0'\3\3\0B\0\3\2\a\0\4\0X\1\4€6\1\0\0009\1\5\1'\3\6\0B\1\2\1K\0\1\0\23setlocal buflisted\bcmd\fcurrent\22neo_tree_position\21nvim_buf_get_var\bapi\bvim)\1\0\3\0\3\0\0056\0\0\0009\0\1\0003\2\2\0B\0\2\1K\0\1\0\0\rschedule\bvim«\4\1\0\6\0\28\0#6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0005\4\5\0=\4\6\3=\3\a\0025\3\b\0005\4\n\0005\5\t\0=\5\v\0043\5\f\0=\5\r\4=\4\14\3=\3\15\0025\3\16\0005\4\17\0005\5\18\0=\5\19\4=\4\20\3=\3\21\0024\3\3\0005\4\22\0003\5\23\0=\5\24\4>\4\1\0035\4\25\0003\5\26\0=\5\24\4>\4\2\3=\3\27\2B\0\2\1K\0\1\0\19event_handlers\0\1\0\1\nevent\26neo_tree_buffer_enter\fhandler\0\1\0\1\nevent\16file_opened\15filesystem\19filtered_items\15never_show\1\2\0\0\t.git\1\0\1\18hide_dotfiles\1\1\0\3\26hijack_netrw_behavior\17open_current\16bind_to_cwd\1\27use_libuv_file_watcher\2\vwindow\npopup\tsize\0\rposition\1\0\0\1\0\2\bcol\t100%\brow\0062\1\0\2\nwidth\b30%\rposition\nfloat\30default_component_configs\tname\1\0\1\19trailing_slash\2\1\0\1\16indent_size\3\1\1\0\1\25use_popups_for_input\1\nsetup\rneo-tree\frequire\0", "config", "neo-tree.nvim") time([[Config for neo-tree.nvim]], false) -- Config for: tokyonight.nvim time([[Config for tokyonight.nvim]], true) try_loadstring("\27LJ\2\ng\0\0\2\0\4\0\t6\0\0\0009\0\1\0+\1\2\0=\1\2\0006\0\0\0009\0\1\0+\1\2\0=\1\3\0K\0\1\0#tokyonight_transparent_sidebar\27tokyonight_transparent\6g\bvim\0", "config", "tokyonight.nvim") time([[Config for tokyonight.nvim]], false) -- Config for: nvim-lspconfig time([[Config for nvim-lspconfig]], true) try_loadstring("\27LJ\2\nD\0\1\6\0\5\0\0066\1\0\0009\1\1\1'\3\2\0009\4\3\0009\5\4\0D\1\4\0\vsource\fmessage\f%s [%s]\vformat\vstringÄ\1\2\0\t\1\t\0\22-\0\0\0G\2\0\0A\0\0\3\15\0\0\0X\2\16€6\2\0\0009\2\1\0029\2\2\2\18\4\0\0'\5\3\0'\6\4\0'\a\5\0005\b\6\0B\2\6\0016\2\0\0009\2\1\0029\2\a\2\18\4\1\0'\5\b\0)\6\20\0B\2\4\1K\0\1\0\0À\rwinblend\24nvim_win_set_option\1\0\2\fnoremap\2\vsilent\2\22wincmd p\6K\6n\24nvim_buf_set_keymap\bapi\bvimG\1\1\6\0\5\0\b5\1\0\0006\2\1\0009\2\2\0029\2\3\0023\4\4\0\18\5\1\0002\0\0€D\2\3\0\0\twith\blsp\bvim\1\0\1\vborder\frounded0\0\1\4\1\2\0\6-\1\0\0\18\3\0\0B\1\2\2'\2\1\0=\2\0\1L\1\2\0\3À\frounded\vborderê\5\1\0\v\0%\0M6\0\0\0'\2\1\0B\0\2\0029\0\2\0006\1\3\0\18\3\0\0B\1\2\4H\4\f€'\6\4\0\18\a\4\0&\6\a\0066\a\5\0009\a\6\a9\a\a\a\18\t\6\0005\n\b\0=\5\t\n=\6\n\n=\6\v\nB\a\3\1F\4\3\3R\4ò6\1\5\0009\1\f\0019\1\r\0016\2\5\0009\2\f\0029\2\15\0026\4\5\0009\4\f\0049\4\16\0049\4\17\0045\5\23\0005\6\19\0009\a\18\0=\a\20\0063\a\21\0=\a\22\6=\6\24\5B\2\3\2=\2\14\0016\1\5\0009\1\16\0019\1\25\0015\3\27\0005\4\26\0=\4\28\3B\1\2\0013\1\29\0006\2\5\0009\2\f\0029\2\r\2\18\3\1\0006\5\5\0009\5\f\0059\5\r\0059\5\31\5B\3\2\2=\3\30\0026\2\5\0009\2\f\0029\2\r\2\18\3\1\0006\5\5\0009\5\f\0059\5\r\0059\5!\5B\3\2\2=\3 \0026\2\0\0'\4\"\0B\2\2\0029\3#\0023\4$\0=\4#\0022\0\0€K\0\1\0\0\17default_opts\25lspconfig.ui.windows\19signature_help\31textDocument/signatureHelp\nhover\23textDocument/hover\0\nfloat\1\0\0\1\0\1\vsource\valways\vconfig\17virtual_text\1\0\3\21update_in_insert\2\14underline\2\nsigns\2\vformat\0\vprefix\1\0\2\vsource\valways\fspacing\3\4\16VirtualText\27on_publish_diagnostics\15diagnostic\twith$textDocument/publishDiagnostics\rhandlers\blsp\nnumhl\vtexthl\ttext\1\0\0\16sign_define\afn\bvim\19DiagnosticSign\npairs\22diagnostics_icons\22axie.utils.config\frequire\0", "config", "nvim-lspconfig") time([[Config for nvim-lspconfig]], false) -- Config for: nvim-gomove time([[Config for nvim-gomove]], true) try_loadstring("\27LJ\2\nN\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\22move_past_end_col\1\nsetup\vgomove\frequire\0", "config", "nvim-gomove") time([[Config for nvim-gomove]], false) -- Config for: which-key.nvim time([[Config for which-key.nvim]], true) try_loadstring("\27LJ\2\nõ\1\0\0\5\0\f\0\0266\0\0\0'\2\1\0B\0\2\0029\1\2\0005\3\4\0005\4\3\0=\4\5\0035\4\6\0=\4\a\3B\1\2\0016\1\0\0'\3\b\0B\1\2\0029\1\t\1B\1\1\0016\1\0\0'\3\b\0B\1\2\0029\1\n\1B\1\1\0016\1\0\0'\3\b\0B\1\2\0029\1\v\1B\1\1\1K\0\1\0\tmisc\26register_git_bindings\21general_mappings\23axie.plugins.binds\vwindow\1\0\1\rwinblend\3\20\vlayout\1\0\0\1\0\1\nalign\vcenter\nsetup\14which-key\frequire\0", "config", "which-key.nvim") time([[Config for which-key.nvim]], false) -- Config for: dial.nvim time([[Config for dial.nvim]], true) try_loadstring("\27LJ\2\n­\n\0\0\n\0002\1‹\0016\0\0\0'\2\1\0B\0\2\0026\1\0\0'\3\2\0B\1\2\0029\1\3\1\18\3\1\0009\1\4\0015\4(\0004\5\19\0009\6\5\0009\6\6\0069\6\a\6>\6\1\0059\6\5\0009\6\6\0069\6\b\6>\6\2\0059\6\5\0009\6\6\0069\6\t\6>\6\3\0059\6\5\0009\6\6\0069\6\n\6>\6\4\0059\6\v\0009\6\f\0064\b\0\0B\6\2\2>\6\5\0059\6\r\0009\6\6\0069\6\r\6>\6\6\0059\6\14\0009\6\6\0069\6\15\6>\6\a\0059\6\16\0009\6\6\0069\6\17\6>\6\b\0059\6\18\0009\6\f\0065\b\20\0005\t\19\0=\t\21\bB\6\2\2>\6\t\0059\6\18\0009\6\f\0065\b\23\0005\t\22\0=\t\21\bB\6\2\2>\6\n\0059\6\18\0009\6\f\0065\b\25\0005\t\24\0=\t\21\bB\6\2\2>\6\v\0059\6\18\0009\6\f\0065\b\27\0005\t\26\0=\t\21\bB\6\2\2>\6\f\0059\6\18\0009\6\f\0065\b\29\0005\t\28\0=\t\21\bB\6\2\2>\6\r\0059\6\18\0009\6\f\0065\b\31\0005\t\30\0=\t\21\bB\6\2\2>\6\14\0059\6\18\0009\6\f\0065\b!\0005\t \0=\t\21\bB\6\2\2>\6\15\0059\6\18\0009\6\f\0065\b#\0005\t\"\0=\t\21\bB\6\2\2>\6\16\0059\6\18\0009\6\f\0065\b%\0005\t$\0=\t\21\bB\6\2\2>\6\17\0059\6\18\0009\6\f\0065\b'\0005\t&\0=\t\21\bB\6\2\0?\6\0\0=\5)\4B\1\3\0016\1\0\0'\3*\0B\1\2\0029\1+\1\18\2\1\0005\4,\0B\2\2\1\18\2\1\0005\4-\0B\2\2\1\18\2\1\0005\4.\0B\2\2\1\18\2\1\0005\4/\0B\2\2\1\18\2\1\0005\0040\0B\2\2\1\18\2\1\0005\0041\0B\2\2\1K\0\1\0\1\4\1\0\6v\vg\28g(dial-decrement)\fnoremap\1\1\4\1\0\6v\vg\28g(dial-increment)\fnoremap\1\1\4\1\0\6v\n\27(dial-decrement)\fnoremap\1\1\4\1\0\6v\n\27(dial-increment)\fnoremap\1\1\4\1\0\6n\n\27(dial-decrement)\fnoremap\1\1\4\1\0\6n\n\27(dial-increment)\fnoremap\1\bmap\15axie.utils\fdefault\1\0\0\1\0\2\tword\1\vcyclic\2\1\3\0\0\a++\a--\1\0\2\tword\1\vcyclic\2\1\a\0\0\a+=\a-=\a*=\a/=\b//=\a%=\1\0\2\tword\1\vcyclic\2\1\3\0\0\a>=\a<=\1\0\2\tword\1\vcyclic\2\1\3\0\0\b===\b!==\1\0\2\tword\1\vcyclic\2\1\3\0\0\a==\a!=\1\0\2\tword\1\vcyclic\2\1\3\0\0\6>\6<\1\0\2\tword\1\vcyclic\2\1\3\0\0\a&&\a||\1\0\2\tword\2\vcyclic\2\1\3\0\0\band\aor\1\0\2\tword\2\vcyclic\2\1\3\0\0\tTrue\nFalse\relements\1\0\2\tword\2\vcyclic\2\1\3\0\0\ttrue\nfalse\rconstant\20markdown_header\tmisc\r%H:%M:%S\tdate\vsemver\bnew\rhexcolor\vbinary\noctal\bhex\fdecimal\nalias\finteger\19register_group\faugends\16dial.config\16dial.augend\frequire%€€À™\4\0", "config", "dial.nvim") time([[Config for dial.nvim]], false) -- Config for: todo-comments.nvim time([[Config for todo-comments.nvim]], true) try_loadstring("\27LJ\2\n\t\0\0\6\0&\00016\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2 \0005\3\6\0005\4\3\0005\5\4\0=\5\5\4=\4\a\0035\4\b\0005\5\t\0=\5\5\4=\4\n\0035\4\v\0005\5\f\0=\5\5\4=\4\r\0035\4\14\0005\5\15\0=\5\5\4=\4\16\0035\4\17\0005\5\18\0=\5\5\4=\4\19\0035\4\20\0005\5\21\0=\5\5\4=\4\22\0035\4\23\0005\5\24\0=\5\5\4=\4\25\0035\4\26\0005\5\27\0=\5\5\4=\4\28\0035\4\29\0005\5\30\0=\5\5\4=\4\31\3=\3!\0025\3\"\0=\3#\0025\3$\0=\3%\2B\0\2\1K\0\1\0\vsearch\1\0\1\fpattern\19\\b(KEYWORDS)\\b\14highlight\1\0\4\fpattern\21.*<(KEYWORDS)\\s*\fkeyword\abg\nafter\afg\vbefore\nempty\rkeywords\1\0\0\tIDEA\1\n\0\0\fSUGGEST\15SUGGESTION\bTRY\rCONSIDER\bALT\16ALTERNATIVE\nINSPO\16INSPIRATION\vRANDOM\1\0\2\ticon\tï µ \ncolor\thint\rBOOKMARK\1\r\0\0\tREAD\nWATCH\tLOOK\bSEE\vREVIEW\tHERE\14IMPORTANT\bBIG\14EXTENSION\tLINK\vUSEFUL\fHELPFUL\1\0\2\ticon\t \ncolor\fwarning\rQUESTION\1\4\0\0\bIDK\fTHOUGHT\rPOSSIBLE\1\0\2\ticon\t \ncolor\nerror\tNOTE\1\14\0\0\tINFO\fINSTALL\nSETUP\nGUIDE\15ASSUMPTION\vASSUME\fASSUMES\vSOURCE\14REFERENCE\rREFACTOR\bDEP\15DEPENDENCY\17DEPENDENCIES\1\0\2\ticon\t \ncolor\tinfo\tPERF\1\a\0\0\16PERFORMANCE\nOPTIM\rOPTIMIZE\rOPTIMISE\15EFFICIENCY\tTEST\1\0\2\ticon\t \ncolor\fwarning\tHACK\1\a\0\0\tTEMP\14TEMPORARY\vCHANGE\vUPDATE\fCONFIRM\nCHECK\1\0\2\ticon\t \ncolor\fwarning\tTODO\1\6\0\0\bNEW\vACTION\15ACTIONABLE\rOPTIONAL\nMAYBE\1\0\2\ticon\t \ncolor\thint\tWARN\1\5\0\0\fWARNING\bXXX\bBAD\nERROR\1\0\2\ticon\t \ncolor\nerror\bFIX\1\0\0\balt\1\n\0\0\nFIXME\bBUG\bBAD\nFIXIT\nISSUE\tHELP\nPRIOR\rPRIORITY\fPROBLEM\1\0\2\ticon\t \ncolor\nerror\nsetup\18todo-comments\frequire\0", "config", "todo-comments.nvim") time([[Config for todo-comments.nvim]], false) -- Config for: aerial.nvim time([[Config for aerial.nvim]], true) try_loadstring("\27LJ\2\n¿\1\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0=\3\5\2B\0\2\1K\0\1\0\vguides\1\0\2\14last_item\t└ \rmid_item\t│ \1\0\5\16show_guides\2\17manage_folds\1\20close_on_select\2\22highlight_on_jump\3È\1\23highlight_on_hover\2\nsetup\vaerial\frequire\0", "config", "aerial.nvim") time([[Config for aerial.nvim]], false) -- Config for: nvim-hlslens time([[Config for nvim-hlslens]], true) try_loadstring("\27LJ\2\n‰\4\0\5\19\0\19\1Y6\5\0\0009\5\1\0059\5\2\5\b\5\0\0X\5\2€+\5\1\0X\6\1€+\5\2\0,\6\b\0006\t\3\0009\t\4\t\18\v\4\0B\t\2\2)\n\1\0\3\n\t\0X\n\18€'\n\5\0\18\f\n\0009\n\6\n\18\r\t\0)\14\1\0\0\14\4\0X\14\2€+\14\1\0X\15\1€+\14\2\0\4\5\14\0X\14\2€'\14\a\0X\15\1€'\14\b\0B\n\4\2\18\6\n\0X\n\1€'\6\t\0006\n\n\0008\f\3\1B\n\2\3\15\0\2\0X\f\27€\21\f\1\0\6\6\t\0X\r\t€'\r\v\0\18\15\r\0009\r\6\r\18\16\6\0\18\17\3\0\18\18\f\0B\r\5\2\18\a\r\0X\r\a€'\r\f\0\18\15\r\0009\r\6\r\18\16\3\0\18\17\f\0B\r\4\2\18\a\r\0004\r\3\0005\14\r\0>\14\1\r5\14\14\0>\a\1\14>\14\2\r\18\b\r\0X\f\14€'\f\15\0\18\14\f\0009\f\6\f\18\15\6\0\18\16\3\0B\f\4\2\18\a\f\0004\f\3\0005\r\16\0>\r\1\f5\r\17\0>\a\1\r>\r\2\f\18\b\f\0009\f\18\0)\14\0\0\23\15\0\n\23\16\0\v\18\17\b\0\18\18\2\0B\f\6\1K\0\1\0\rset_virt\1\3\0\0\0\17HlSearchLens\1\3\0\0\6 \vIgnore\v[%s%d]\1\3\0\0\0\21HlSearchLensNear\1\3\0\0\6 \vIgnore\f[%d/%d]\14[%s%d/%d]\vunpack\5\b▼\b▲\vformat\t%d%s\babs\tmath\18searchforward\6v\bvim\2â\2\1\0\4\0\f\0\0256\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0003\3\3\0=\3\5\2B\0\2\0016\0\0\0'\2\6\0B\0\2\0029\0\a\0\18\1\0\0005\3\b\0B\1\2\1\18\1\0\0005\3\t\0B\1\2\1\18\1\0\0005\3\n\0B\1\2\1\18\1\0\0005\3\v\0B\1\2\1K\0\1\0\1\4\0\0\6n\ag#,g#lua require'hlslens'.start()\1\4\0\0\6n\6#+#lua require'hlslens'.start()\1\4\0\0\6n\ag*,g*lua require'hlslens'.start()\1\4\0\0\6n\6*+*lua require'hlslens'.start()\bmap\15axie.utils\18override_lens\1\0\0\0\nsetup\fhlslens\frequire\0", "config", "nvim-hlslens") time([[Config for nvim-hlslens]], false) -- Load plugins in order defined by `after` time([[Sequenced loading]], true) vim.cmd [[ packadd nvim-scrollbar ]] -- Config for: nvim-scrollbar try_loadstring("\27LJ\2\në\1\0\0\4\0\t\0\0166\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\2B\0\2\0016\0\0\0'\2\b\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\30scrollbar.handlers.search\23excluded_filetypes\1\a\0\0\vprompt\20TelescopePrompt\rterminal\flspinfo\nalpha\15toggleterm\vhandle\1\0\0\1\0\1\14highlight\15CursorLine\nsetup\14scrollbar\frequire\0", "config", "nvim-scrollbar") vim.cmd [[ packadd galaxyline.nvim ]] -- Config for: galaxyline.nvim try_loadstring("\27LJ\2\n‘\b\0\0\t\0$\4ƒ\0016\0\0\0'\2\1\0B\0\2\0026\1\0\0'\3\2\0B\1\2\0029\1\3\0016\2\0\0'\4\2\0B\2\2\0029\2\4\0025\3\14\0004\4\t\0\18\5\1\0'\a\6\0B\5\2\2>\5\1\4\18\5\1\0'\a\a\0B\5\2\2>\5\2\4\18\5\1\0'\a\b\0B\5\2\2>\5\3\4\18\5\1\0'\a\t\0B\5\2\2>\5\4\4\18\5\1\0'\a\n\0B\5\2\2>\5\5\4\18\5\1\0'\a\v\0B\5\2\2>\5\6\4\18\5\1\0'\a\f\0B\5\2\2>\5\a\4\18\5\1\0'\a\r\0B\5\2\0?\5\0\0=\4\15\0034\4\5\0\18\5\1\0'\a\16\0B\5\2\2>\5\1\4\18\5\1\0'\a\17\0B\5\2\2>\5\2\4\18\5\1\0'\a\18\0B\5\2\2>\5\3\4\18\5\1\0'\a\19\0B\5\2\0?\5\1\0=\4\20\0034\4\a\0\18\5\1\0'\a\21\0B\5\2\2>\5\1\4\18\5\1\0'\a\22\0B\5\2\2>\5\2\4\18\5\1\0'\a\23\0B\5\2\2>\5\3\4\18\5\1\0'\a\24\0B\5\2\2>\5\4\4\18\5\1\0'\a\25\0B\5\2\2>\5\5\4\18\5\1\0'\a\6\0B\5\2\0?\5\2\0=\4\26\0034\4\3\0\18\5\1\0'\a\6\0B\5\2\0?\5\3\0=\4\27\0034\4\5\0\18\5\1\0'\a\a\0B\5\2\2>\5\1\4\18\5\1\0'\a\28\0\18\b\2\0B\5\3\2>\5\2\4\18\5\1\0'\a\t\0\18\b\2\0B\5\3\2>\5\3\4\18\5\1\0'\a\b\0\18\b\2\0B\5\3\0?\5\1\0=\4\29\0034\4\3\0\18\5\1\0'\a\6\0B\5\2\0?\5\3\0=\4\30\3=\3\5\0005\3 \0=\3\31\0006\3!\0009\3\"\3'\5#\0B\3\2\1K\0\1\0(hi GalaxyLineFillSection guibg=NONE\bcmd\bvim\1\n\0\0\aqf\rNvimTree\rneo-tree\vaerial\nMundo\fTrouble\15toggleterm\nalpha\fminimap\20short_line_list\21short_line_right\19short_line_mid\fDivider\20short_line_left\nright\15LineColumn\14WordCount\15FileFormat\14LspClient\rFileIcon\bmid\19DiagnosticInfo\19DiagnosticHint\19DiagnosticWarn\20DiagnosticError\tleft\1\0\0\15DiffRemove\17DiffModified\fDiffAdd\14GitBranch\rFileName\17FileNameIcon\fVimMode\14ScrollBar\fsection\25filetype_conditional\18get_component\28axie.plugins.galaxyline\15galaxyline\frequire\17€€À™\4\t€€À™\4\r€€À™\4\3€€À™\4\0", "config", "galaxyline.nvim") vim.cmd [[ packadd neovim-session-manager ]] -- Config for: neovim-session-manager try_loadstring("\27LJ\2\n—\1\0\0\6\0\b\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\6\0006\3\0\0'\5\3\0B\3\2\0029\3\4\0039\3\5\3=\3\a\2B\0\2\1K\0\1\0\18autoload_mode\1\0\0\rDisabled\17AutoloadMode\27session_manager.config\nsetup\20session_manager\frequire\0", "config", "neovim-session-manager") vim.cmd [[ packadd project.nvim ]] -- Config for: project.nvim try_loadstring("\27LJ\2\nt\0\0\3\0\6\0\f6\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\0016\0\0\0'\2\3\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\rprojects\19load_extension\14telescope\nsetup\17project_nvim\frequire\0", "config", "project.nvim") vim.cmd [[ packadd nvim-neoclip.lua ]] -- Config for: nvim-neoclip.lua try_loadstring("\27LJ\2\nˆ\1\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0B\0\2\0016\0\0\0'\2\4\0B\0\2\0029\0\5\0'\2\1\0B\0\2\1K\0\1\0\19load_extension\14telescope\1\0\1\30enable_persistent_history\2\nsetup\fneoclip\frequire\0", "config", "nvim-neoclip.lua") time([[Sequenced loading]], false) -- Command lazy-loads time([[Defining lazy-load commands]], true) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file MarkdownPreview lua require("packer.load")({'markdown-preview.nvim'}, { cmd = "MarkdownPreview", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file CodeActionMenu lua require("packer.load")({'nvim-code-action-menu'}, { cmd = "CodeActionMenu", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Minimap lua require("packer.load")({'minimap.vim'}, { cmd = "Minimap", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file MinimapClose lua require("packer.load")({'minimap.vim'}, { cmd = "MinimapClose", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file MinimapToggle lua require("packer.load")({'minimap.vim'}, { cmd = "MinimapToggle", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file MinimapRefresh lua require("packer.load")({'minimap.vim'}, { cmd = "MinimapRefresh", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Twilight lua require("packer.load")({'twilight.nvim'}, { cmd = "Twilight", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Glow lua require("packer.load")({'glow.nvim'}, { cmd = "Glow", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file PasteImg lua require("packer.load")({'clipboard-image.nvim'}, { cmd = "PasteImg", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file GlowInstall lua require("packer.load")({'glow.nvim'}, { cmd = "GlowInstall", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file ZenMode lua require("packer.load")({'zen-mode.nvim'}, { cmd = "ZenMode", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file MinimapUpdateHighlight lua require("packer.load")({'minimap.vim'}, { cmd = "MinimapUpdateHighlight", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) time([[Defining lazy-load commands]], false) vim.cmd [[augroup packer_load_aucmds]] vim.cmd [[au!]] -- Filetype lazy-loads time([[Defining lazy-load filetype autocommands]], true) vim.cmd [[au FileType markdown ++once lua require("packer.load")({'markdown-preview.nvim'}, { ft = "markdown" }, _G.packer_plugins)]] vim.cmd [[au FileType json ++once lua require("packer.load")({'package-info.nvim'}, { ft = "json" }, _G.packer_plugins)]] vim.cmd [[au FileType qf ++once lua require("packer.load")({'nvim-bqf'}, { ft = "qf" }, _G.packer_plugins)]] time([[Defining lazy-load filetype autocommands]], false) -- Event lazy-loads time([[Defining lazy-load event autocommands]], true) vim.cmd [[au BufRead * ++once lua require("packer.load")({'indent-blankline.nvim', 'numb.nvim'}, { event = "BufRead *" }, _G.packer_plugins)]] vim.cmd [[au BufEnter * ++once lua require("packer.load")({'focus.nvim'}, { event = "BufEnter *" }, _G.packer_plugins)]] time([[Defining lazy-load event autocommands]], false) vim.cmd("augroup END") if should_profile then save_profiles() end end) if not no_errors then error_msg = error_msg:gsub('"', '\\"') vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None') end ```

UPDATE: related to #765

axieax commented 2 years ago

Seems like plugins without a .url field in packer_plugins also have only_config = true.