few bugfixes, mini.files

This commit is contained in:
iofq 2024-08-21 02:35:12 -05:00
parent 4ceceff9bf
commit 14fec02d63
9 changed files with 149 additions and 162 deletions

View file

@ -105,22 +105,26 @@ with lib;
# and prepends the nvim and after directory to the RTP
initLua = ''
vim.opt.rtp:prepend('${nvimRtp}/lua')
lazy_opts = {
LAZY_OPTS = {
performance = {
reset_packpath = false,
rtp = { reset = false, },
rtp = {
reset = false,
disabled_plugins = {
"netrwPlugin",
"tutor",
},
},
},
dev = {
path = "${pkgs.neovimUtils.packDir neovimConfig.packpathDirs}/pack/myNeovimPackages/start",
patterns = {""},
},
checker = {
enabled = false,
},
install = { missing = false, },
spec = {{ import = "plugins" }},
disabled_plugins = {
"netrwPlugin",
"tutor",
"zipPlugin",
},
}
'' + (builtins.readFile ../nvim/init.lua);