nixos/modules/home/shell/nvim-lua/lazy_setup.lua

31 lines
599 B
Lua
Raw Normal View History

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",
},
},
},
})