29 lines
743 B
Lua
29 lines
743 B
Lua
require("lazy").setup({
|
|
spec = {
|
|
{
|
|
"AstroNvim/AstroNvim",
|
|
-- version = "^4",
|
|
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]]
|