31 lines
599 B
Lua
31 lines
599 B
Lua
|
require("lazy").setup({
|
||
|
{
|
||
|
"AstroNvim/AstroNvim",
|
||
|
verson = "^4",
|
||
|
import = "astronvim.plugins",
|
||
|
opts = {
|
||
|
mapleader = " ",
|
||
|
maplocalleader = ",",
|
||
|
icons_enabled = true,
|
||
|
pin_plugins = nil,
|
||
|
update_notifications = true,
|
||
|
},
|
||
|
},
|
||
|
{ import = "community" },
|
||
|
-- { import = "plugins" },
|
||
|
}, {
|
||
|
install = { colorscheme = { "astrodark", "habamax" } },
|
||
|
ui = { backdrop = 100 },
|
||
|
performance = {
|
||
|
rtp = {
|
||
|
disabled_plugins = {
|
||
|
"gzip",
|
||
|
"netrwPlugin",
|
||
|
"tarPlugin",
|
||
|
"tohtml",
|
||
|
"zipPlugin",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|