Files
AstroConfig/lua/lazy_setup.lua
2024-03-16 11:21:46 +01:00

30 lines
784 B
Lua

require("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]]