52 lines
1.5 KiB
Lua
52 lines
1.5 KiB
Lua
local lazypath = vim.env.LAZY or vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not (vim.env.LAZY or vim.loop.fs_stat(lazypath)) then
|
|
vim.g.astronvim_first_install = true -- lets AstroNvim know that this is an initial installation
|
|
vim.fn.system({
|
|
"git",
|
|
"clone",
|
|
"--filter=blob:none",
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
"--branch=stable",
|
|
lazypath,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
local lazy_loaded, lazy = pcall(require, "lazy") -- validate that lazy is available
|
|
if not lazy_loaded then
|
|
-- stylua: ignore
|
|
vim.api.nvim_echo({ { ("Unable to load lazy from: %s\n"):format(lazypath), "ErrorMsg" }, { "Press any key to exit...", "MoreMsg" } }, true, {})
|
|
vim.fn.getchar()
|
|
vim.cmd.quit()
|
|
end
|
|
|
|
lazy.setup({
|
|
spec = {
|
|
-- TODO: remove branch v4 on release
|
|
{
|
|
"AstroNvim/AstroNvim",
|
|
branch = "v4",
|
|
import = "astronvim.plugins",
|
|
},
|
|
{ import = "plugins" },
|
|
},
|
|
install = { colorscheme = { "astrodark", "habamax" } },
|
|
performance = {
|
|
rtp = {
|
|
-- disable some rtp plugins, add more to your liking
|
|
disabled_plugins = {
|
|
"gzip",
|
|
"netrwPlugin",
|
|
"tarPlugin",
|
|
"tohtml",
|
|
"zipPlugin",
|
|
},
|
|
},
|
|
},
|
|
dev = {
|
|
path = "~/Workspace",
|
|
patterns = {},
|
|
fallback = true, -- Fallback to git when local plugin doesn't exist
|
|
},
|
|
} --[[@as LazyConfig]])
|