56 lines
2.4 KiB
Lua
56 lines
2.4 KiB
Lua
local git_version = vim.fn.system { "git", "--version" }
|
|
if vim.api.nvim_get_vvar "shell_error" ~= 0 then
|
|
vim.api.nvim_err_writeln("Git doesn't appear to be available...\n\n" .. git_version)
|
|
end
|
|
local major, min, _ = unpack(vim.tbl_map(tonumber, vim.split(git_version:match "%d+%.%d+%.%d", "%.")))
|
|
local modern_git = major > 2 or (major == 2 and min >= 19)
|
|
|
|
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
|
if not (vim.uv or vim.loop).fs_stat(lazypath) then -- TODO: REMOVE vim.loop WHEN DROPPING SUPPORT FOR Neovim v0.9
|
|
local clone = { "git", "clone", modern_git and "--filter=blob:none" or nil }
|
|
local output =
|
|
vim.fn.system(vim.list_extend(clone, { "--branch=stable", "https://github.com/folke/lazy.nvim.git", lazypath }))
|
|
if vim.api.nvim_get_vvar "shell_error" ~= 0 then
|
|
vim.api.nvim_err_writeln("Error cloning lazy.nvim repository...\n\n" .. output)
|
|
end
|
|
local oldcmdheight = vim.opt.cmdheight:get()
|
|
vim.opt.cmdheight = 1
|
|
vim.notify "Please wait while plugins are installed..."
|
|
vim.api.nvim_create_autocmd("User", {
|
|
desc = "Load Mason and Treesitter after Lazy installs plugins",
|
|
once = true,
|
|
pattern = "LazyInstall",
|
|
callback = function()
|
|
vim.cmd.bw()
|
|
vim.opt.cmdheight = oldcmdheight
|
|
vim.tbl_map(function(module) pcall(require, module) end, { "nvim-treesitter", "mason" })
|
|
require("astronvim.utils").notify "Mason is installing packages if configured, check status with `:Mason`"
|
|
end,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
local user_plugins = astronvim.user_opts "plugins"
|
|
for _, config_dir in ipairs(astronvim.supported_configs) do
|
|
if vim.fn.isdirectory(config_dir .. "/lua/user/plugins") == 1 then user_plugins = { import = "user.plugins" } end
|
|
end
|
|
|
|
local spec = astronvim.updater.options.pin_plugins and { { import = astronvim.updater.snapshot.module } } or {}
|
|
vim.list_extend(spec, { { import = "plugins" }, user_plugins })
|
|
|
|
local colorscheme = astronvim.default_colorscheme and { astronvim.default_colorscheme } or nil
|
|
|
|
require("lazy").setup(astronvim.user_opts("lazy", {
|
|
spec = spec,
|
|
defaults = { lazy = true },
|
|
git = { filter = modern_git },
|
|
install = { colorscheme = colorscheme },
|
|
performance = {
|
|
rtp = {
|
|
paths = astronvim.supported_configs,
|
|
disabled_plugins = { "tohtml", "gzip", "zipPlugin", "netrwPlugin", "tarPlugin" },
|
|
},
|
|
},
|
|
lockfile = vim.fn.stdpath "data" .. "/lazy-lock.json",
|
|
}))
|