Fixup v4 template

This commit is contained in:
2024-02-14 15:47:19 +01:00
parent dfba1a5905
commit 2057f91051
7 changed files with 90 additions and 93 deletions

29
lua/lazy_setup.lua Normal file
View File

@@ -0,0 +1,29 @@
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]]