AstroNvim/lua/lazy_setup.lua

32 lines
1.1 KiB
Lua
Raw Normal View History

2024-03-26 20:12:51 -04:00
require("lazy").setup({
{
"AstroNvim/AstroNvim",
2024-04-11 11:50:09 -04:00
branch = "^4", -- TODO: change `branch="v4"` to `version="^4"` on release
2024-03-26 20:12:51 -04:00
import = "astronvim.plugins",
opts = { -- AstroNvim options must be set here with the `import` key
mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up
maplocalleader = ",", -- This ensures the localleader key must be configured before Lazy is set up
icons_enabled = true, -- Set to false to disable icons (if no Nerd Font is available)
pin_plugins = nil, -- Default will pin plugins when tracking `version` of AstroNvim, set to true/false to override
},
},
{ import = "community" },
{ import = "plugins" },
} --[[@as LazySpec]], {
-- Configure any other `lazy.nvim` configuration options here
install = { colorscheme = { "astrodark", "habamax" } },
2024-04-11 11:38:11 -04:00
ui = { backdrop = 100 },
2024-03-26 20:12:51 -04:00
performance = {
rtp = {
-- disable some rtp plugins, add more to your liking
disabled_plugins = {
"gzip",
"netrwPlugin",
"tarPlugin",
"tohtml",
"zipPlugin",
},
},
},
} --[[@as LazyConfig]])