install: don't install neovim plugins

This commit is contained in:
Fernando Schauenburg 2023-02-26 18:11:23 +01:00
parent 77d189a846
commit 042595f45a

View file

@ -25,7 +25,6 @@ main() {
stow_home
link_config
git_user_config
nvim_plugins
}
check_dependencies() {
@ -127,18 +126,6 @@ EOF
fi
}
nvim_plugins() {
heading 'nvim plugins'
if command -v nvim >/dev/null 2>&1; then
dry_run || {
warn "installing neovim plugins..."
nvim --headless -c 'autocmd User PackerComplete quitall' -c 'PackerSync'
}
else
error "neovim is not installed; skipping plugin installation..."
fi
}
###############################################################################
# Helper Functions
###############################################################################