Files
neovim-config/lua/config/lazy.lua
T
rootiest 4d9175837d 🔎 Add Lazy Profiling
- Adds additional debugging flags to better track plugin loading times
2024-07-17 14:56:39 -04:00

46 lines
1.2 KiB
Lua

-- -----------------------------------------------------------------------------
-- ---------------------------------- LAZY -------------------------------------
-- -----------------------------------------------------------------------------
-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.uv.fs_stat(lazypath) then
-- stylua: ignore
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", lazypath
})
end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
-- --------------------------------- PLUGINS -----------------------------------
require("lazy").setup({
spec = {
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
{ import = "ui" }, -- UI Plugins
{ import = "plugins" }, -- General Plugins
{ import = "themes" }, -- Theme Plugins
},
defaults = { lazy = false, version = false },
checker = { enabled = true },
performance = {
rtp = {
disabled_plugins = {
"gzip",
"netrwPlugin",
"tarPlugin",
"tohtml",
"tutor",
"zipPlugin",
},
},
},
profiling = {
-- Track the time spent loading plugins
loader = true,
require = true,
},
})