This commit is contained in:
pika 2025-05-11 14:48:23 +02:00
parent 46597d1677
commit d49530a51a
2 changed files with 81 additions and 519 deletions

View file

@ -83,6 +83,13 @@
fi
}
checkAndInitConfig() {
if [ -d "$HOME/.config/nvim/" ]; then
echo_info "Prefetching neovim setup configuration.."
run nvim --headless +q
fi
}
if getImports; then
case "$1" in
--silent | -s)
@ -97,4 +104,5 @@
installBuildDependencies
cloneSources
makeInstall
checkAndInitConfig
}