55 lines
903 B
Lua
Raw Normal View History

2023-08-19 17:22:56 +00:00
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable",
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup("plugins", {
defaults = {
lazy = true,
},
change_detection = {
2023-08-20 22:09:00 +00:00
notify = false
2023-08-19 17:22:56 +00:00
},
performance = {
rtp = {
disabled_plugins = {
2023-08-21 17:19:37 +00:00
"2html_plugin",
"tohtml",
"getscript",
"getscriptPlugin",
2023-08-19 17:22:56 +00:00
"gzip",
2023-08-21 17:19:37 +00:00
"logipat",
"netrw",
2023-08-19 17:22:56 +00:00
"netrwPlugin",
2023-08-21 17:19:37 +00:00
"netrwSettings",
"netrwFileHandlers",
"matchit",
"tar",
2023-08-19 17:22:56 +00:00
"tarPlugin",
2023-08-21 17:19:37 +00:00
"rrhelper",
"spellfile_plugin",
"vimball",
"vimballPlugin",
"zip",
2023-08-19 17:22:56 +00:00
"zipPlugin",
2023-08-21 17:19:37 +00:00
"tutor",
"rplugin",
"syntax",
"synmenu",
"optwin",
"compiler",
"bugreport",
"ftplugin",
2023-08-19 17:22:56 +00:00
},
},
},
})