2023-02-12 17:48:16 +07:00
|
|
|
-- 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()
|
|
|
|
|
|
|
|
_G._packer = _G._packer or {}
|
|
|
|
_G._packer.inside_compile = true
|
|
|
|
|
|
|
|
local time
|
|
|
|
local profile_info
|
|
|
|
local should_profile = false
|
|
|
|
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
|
|
|
|
if threshold then
|
|
|
|
table.insert(results, '(Only showing plugins that took longer than ' .. threshold .. ' ms ' .. 'to load)')
|
|
|
|
end
|
|
|
|
|
|
|
|
_G._packer.profile_output = results
|
|
|
|
end
|
|
|
|
|
|
|
|
time([[Luarocks path setup]], true)
|
2023-06-14 15:10:29 +07:00
|
|
|
local package_path_str = "/root/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/root/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/root/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/root/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua"
|
|
|
|
local install_cpath_pattern = "/root/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so"
|
2023-02-12 17:48:16 +07:00
|
|
|
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 = {
|
|
|
|
["bufferline.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n2\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\23plugins/bufferline\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/bufferline.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/akinsho/bufferline.nvim"
|
|
|
|
},
|
|
|
|
["coq.artifacts"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/coq.artifacts",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/ms-jpq/coq.artifacts"
|
|
|
|
},
|
|
|
|
["coq.thirdparty"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/coq.thirdparty",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/ms-jpq/coq.thirdparty"
|
|
|
|
},
|
|
|
|
coq_nvim = {
|
2023-02-14 04:58:56 +07:00
|
|
|
after = { "nvim-lspconfig" },
|
2023-02-12 17:48:16 +07:00
|
|
|
config = { "\27LJ\2\n+\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\16plugins/coq\frequire\0" },
|
|
|
|
loaded = true,
|
2023-02-14 04:58:56 +07:00
|
|
|
only_config = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/coq_nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/ms-jpq/coq_nvim"
|
|
|
|
},
|
|
|
|
["diaglist.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n0\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\21plugins/diaglist\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/diaglist.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/onsails/diaglist.nvim"
|
|
|
|
},
|
|
|
|
["fidget.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n.\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\19plugins/fidget\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/fidget.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/j-hui/fidget.nvim"
|
|
|
|
},
|
|
|
|
["gitsigns.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n0\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\21plugins/gitsigns\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/gitsigns.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/lewis6991/gitsigns.nvim"
|
|
|
|
},
|
|
|
|
kommentary = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/kommentary",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/b3nj5m1n/kommentary"
|
|
|
|
},
|
|
|
|
["lsp-colors.nvim"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/lsp-colors.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/folke/lsp-colors.nvim"
|
|
|
|
},
|
|
|
|
["lspkind-nvim"] = {
|
|
|
|
config = { "\27LJ\2\n/\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\20plugins/lspkind\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/lspkind-nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/onsails/lspkind-nvim"
|
|
|
|
},
|
|
|
|
["lualine-lsp-progress"] = {
|
|
|
|
config = { "\27LJ\2\n<\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0!plugins/lualine-lsp-progress\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/lualine-lsp-progress",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/arkav/lualine-lsp-progress"
|
|
|
|
},
|
|
|
|
["lualine.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n/\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\20plugins/lualine\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/lualine.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/nvim-lualine/lualine.nvim"
|
|
|
|
},
|
|
|
|
["lush.nvim"] = {
|
2023-02-14 04:58:56 +07:00
|
|
|
config = { "\27LJ\2\n,\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\17plugins/lush\frequire\0" },
|
2023-02-12 17:48:16 +07:00
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/lush.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/rktjmp/lush.nvim"
|
|
|
|
},
|
|
|
|
["neo-tree.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n0\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\21plugins/neo-tree\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/neo-tree.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/nvim-neo-tree/neo-tree.nvim"
|
|
|
|
},
|
2023-02-14 04:58:56 +07:00
|
|
|
["nginx.vim"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/nginx.vim",
|
2023-02-14 04:58:56 +07:00
|
|
|
url = "https://github.com/chr4/nginx.vim"
|
|
|
|
},
|
2023-02-12 17:48:16 +07:00
|
|
|
["nui.nvim"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/nui.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/MunifTanjim/nui.nvim"
|
|
|
|
},
|
|
|
|
["nvim-autopairs"] = {
|
|
|
|
config = { "\27LJ\2\n1\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\22plugins/autopairs\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/windwp/nvim-autopairs"
|
|
|
|
},
|
|
|
|
["nvim-dap"] = {
|
|
|
|
config = { "\27LJ\2\n+\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\16plugins/dap\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-dap",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/mfussenegger/nvim-dap"
|
|
|
|
},
|
|
|
|
["nvim-lint"] = {
|
|
|
|
config = { "\27LJ\2\n,\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\17plugins/lint\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-lint",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/mfussenegger/nvim-lint"
|
|
|
|
},
|
|
|
|
["nvim-lspconfig"] = {
|
|
|
|
config = { "\27LJ\2\n1\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\22plugins/lspconfig\frequire\0" },
|
2023-02-14 04:58:56 +07:00
|
|
|
load_after = {},
|
2023-02-12 17:48:16 +07:00
|
|
|
loaded = true,
|
2023-02-14 04:58:56 +07:00
|
|
|
needs_bufread = false,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/opt/nvim-lspconfig",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/neovim/nvim-lspconfig"
|
|
|
|
},
|
|
|
|
["nvim-treesitter"] = {
|
|
|
|
config = { "\27LJ\2\n2\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\23plugins/treesitter\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/nvim-treesitter/nvim-treesitter"
|
|
|
|
},
|
|
|
|
["nvim-web-devicons"] = {
|
|
|
|
config = { "\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugins/nvim-web-devicons\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/nvim-tree/nvim-web-devicons"
|
|
|
|
},
|
|
|
|
["packer.nvim"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/packer.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/wbthomason/packer.nvim"
|
|
|
|
},
|
|
|
|
phpctags = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/phpctags",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/vim-php/phpctags"
|
|
|
|
},
|
|
|
|
["plenary.nvim"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/plenary.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/nvim-lua/plenary.nvim"
|
|
|
|
},
|
|
|
|
["symbols-outline.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n7\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\28plugins/symbols-outline\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/symbols-outline.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/simrat39/symbols-outline.nvim"
|
|
|
|
},
|
|
|
|
tagbar = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/tagbar",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/preservim/tagbar"
|
|
|
|
},
|
|
|
|
["telescope.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n1\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\22plugins/telescope\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/telescope.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/nvim-telescope/telescope.nvim"
|
|
|
|
},
|
|
|
|
["trouble.nvim"] = {
|
|
|
|
config = { "\27LJ\2\n/\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\20plugins/trouble\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/trouble.nvim",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/folke/trouble.nvim"
|
|
|
|
},
|
|
|
|
["vim-fish"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/vim-fish",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/dag/vim-fish"
|
|
|
|
},
|
|
|
|
["vim-fugitive"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/vim-fugitive",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/tpope/vim-fugitive"
|
|
|
|
},
|
|
|
|
["vim-signify"] = {
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/vim-signify",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/mhinz/vim-signify"
|
|
|
|
},
|
|
|
|
["vim-test"] = {
|
|
|
|
config = { "\27LJ\2\n0\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\21plugins/vim-test\frequire\0" },
|
|
|
|
loaded = true,
|
2023-06-14 15:10:29 +07:00
|
|
|
path = "/root/.local/share/nvim/site/pack/packer/start/vim-test",
|
2023-02-12 17:48:16 +07:00
|
|
|
url = "https://github.com/vim-test/vim-test"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
time([[Defining packer_plugins]], false)
|
2023-06-14 15:10:29 +07:00
|
|
|
-- Config for: trouble.nvim
|
|
|
|
time([[Config for trouble.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n/\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\20plugins/trouble\frequire\0", "config", "trouble.nvim")
|
|
|
|
time([[Config for trouble.nvim]], false)
|
|
|
|
-- Config for: nvim-web-devicons
|
|
|
|
time([[Config for nvim-web-devicons]], true)
|
|
|
|
try_loadstring("\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugins/nvim-web-devicons\frequire\0", "config", "nvim-web-devicons")
|
|
|
|
time([[Config for nvim-web-devicons]], false)
|
|
|
|
-- Config for: nvim-treesitter
|
|
|
|
time([[Config for nvim-treesitter]], true)
|
|
|
|
try_loadstring("\27LJ\2\n2\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\23plugins/treesitter\frequire\0", "config", "nvim-treesitter")
|
|
|
|
time([[Config for nvim-treesitter]], false)
|
|
|
|
-- Config for: lush.nvim
|
|
|
|
time([[Config for lush.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n,\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\17plugins/lush\frequire\0", "config", "lush.nvim")
|
|
|
|
time([[Config for lush.nvim]], false)
|
|
|
|
-- Config for: diaglist.nvim
|
|
|
|
time([[Config for diaglist.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n0\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\21plugins/diaglist\frequire\0", "config", "diaglist.nvim")
|
|
|
|
time([[Config for diaglist.nvim]], false)
|
2023-02-14 04:58:56 +07:00
|
|
|
-- Config for: neo-tree.nvim
|
|
|
|
time([[Config for neo-tree.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n0\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\21plugins/neo-tree\frequire\0", "config", "neo-tree.nvim")
|
|
|
|
time([[Config for neo-tree.nvim]], false)
|
2023-06-14 15:10:29 +07:00
|
|
|
-- Config for: vim-test
|
|
|
|
time([[Config for vim-test]], true)
|
|
|
|
try_loadstring("\27LJ\2\n0\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\21plugins/vim-test\frequire\0", "config", "vim-test")
|
|
|
|
time([[Config for vim-test]], false)
|
2023-02-26 20:05:20 +07:00
|
|
|
-- Config for: fidget.nvim
|
|
|
|
time([[Config for fidget.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n.\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\19plugins/fidget\frequire\0", "config", "fidget.nvim")
|
|
|
|
time([[Config for fidget.nvim]], false)
|
2023-03-21 03:26:16 +07:00
|
|
|
-- Config for: telescope.nvim
|
|
|
|
time([[Config for telescope.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n1\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\22plugins/telescope\frequire\0", "config", "telescope.nvim")
|
|
|
|
time([[Config for telescope.nvim]], false)
|
2023-06-14 15:10:29 +07:00
|
|
|
-- Config for: gitsigns.nvim
|
|
|
|
time([[Config for gitsigns.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n0\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\21plugins/gitsigns\frequire\0", "config", "gitsigns.nvim")
|
|
|
|
time([[Config for gitsigns.nvim]], false)
|
2023-03-21 03:26:16 +07:00
|
|
|
-- Config for: symbols-outline.nvim
|
|
|
|
time([[Config for symbols-outline.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n7\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\28plugins/symbols-outline\frequire\0", "config", "symbols-outline.nvim")
|
|
|
|
time([[Config for symbols-outline.nvim]], false)
|
2023-06-14 15:10:29 +07:00
|
|
|
-- Config for: coq_nvim
|
|
|
|
time([[Config for coq_nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n+\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\16plugins/coq\frequire\0", "config", "coq_nvim")
|
|
|
|
time([[Config for coq_nvim]], false)
|
2023-02-26 20:05:20 +07:00
|
|
|
-- Config for: lualine-lsp-progress
|
|
|
|
time([[Config for lualine-lsp-progress]], true)
|
|
|
|
try_loadstring("\27LJ\2\n<\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0!plugins/lualine-lsp-progress\frequire\0", "config", "lualine-lsp-progress")
|
|
|
|
time([[Config for lualine-lsp-progress]], false)
|
2023-03-21 03:26:16 +07:00
|
|
|
-- Config for: lualine.nvim
|
|
|
|
time([[Config for lualine.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n/\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\20plugins/lualine\frequire\0", "config", "lualine.nvim")
|
|
|
|
time([[Config for lualine.nvim]], false)
|
2023-06-14 15:10:29 +07:00
|
|
|
-- Config for: nvim-dap
|
|
|
|
time([[Config for nvim-dap]], true)
|
|
|
|
try_loadstring("\27LJ\2\n+\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\16plugins/dap\frequire\0", "config", "nvim-dap")
|
|
|
|
time([[Config for nvim-dap]], false)
|
2023-03-21 03:26:16 +07:00
|
|
|
-- Config for: bufferline.nvim
|
|
|
|
time([[Config for bufferline.nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n2\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\23plugins/bufferline\frequire\0", "config", "bufferline.nvim")
|
|
|
|
time([[Config for bufferline.nvim]], false)
|
2023-06-14 15:10:29 +07:00
|
|
|
-- Config for: lspkind-nvim
|
|
|
|
time([[Config for lspkind-nvim]], true)
|
|
|
|
try_loadstring("\27LJ\2\n/\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\20plugins/lspkind\frequire\0", "config", "lspkind-nvim")
|
|
|
|
time([[Config for lspkind-nvim]], false)
|
|
|
|
-- Config for: nvim-autopairs
|
|
|
|
time([[Config for nvim-autopairs]], true)
|
|
|
|
try_loadstring("\27LJ\2\n1\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\22plugins/autopairs\frequire\0", "config", "nvim-autopairs")
|
|
|
|
time([[Config for nvim-autopairs]], false)
|
|
|
|
-- Config for: nvim-lint
|
|
|
|
time([[Config for nvim-lint]], true)
|
|
|
|
try_loadstring("\27LJ\2\n,\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\17plugins/lint\frequire\0", "config", "nvim-lint")
|
|
|
|
time([[Config for nvim-lint]], false)
|
2023-02-14 04:58:56 +07:00
|
|
|
-- Load plugins in order defined by `after`
|
|
|
|
time([[Sequenced loading]], true)
|
|
|
|
vim.cmd [[ packadd nvim-lspconfig ]]
|
|
|
|
|
|
|
|
-- Config for: nvim-lspconfig
|
|
|
|
try_loadstring("\27LJ\2\n1\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\22plugins/lspconfig\frequire\0", "config", "nvim-lspconfig")
|
|
|
|
|
|
|
|
time([[Sequenced loading]], false)
|
2023-02-12 17:48:16 +07:00
|
|
|
|
|
|
|
_G._packer.inside_compile = false
|
|
|
|
if _G._packer.needs_bufread == true then
|
|
|
|
vim.cmd("doautocmd BufRead")
|
|
|
|
end
|
|
|
|
_G._packer.needs_bufread = false
|
|
|
|
|
|
|
|
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
|