Update upgrade_system to omit neovim now that lazy.nvim kinda handles all of that automatically

This commit is contained in:
Tony Blyler 2023-06-21 10:35:05 -04:00
parent 3144a74452
commit 11759e4ebd
No known key found for this signature in database

View file

@ -26,7 +26,7 @@ upgrade_system() {
# Fedora # Fedora
if command -v dnf &> /dev/null; then if command -v dnf &> /dev/null; then
sudo dnf upgrade sudo dnf upgrade
fi fi
# Arch # Arch
if command -v yay &> /dev/null; then if command -v yay &> /dev/null; then
@ -37,10 +37,6 @@ upgrade_system() {
;; ;;
esac esac
if command -v nvim &> /dev/null; then
nvim --headless -E -c 'PaqSync' -c 'sleep 5' -c 'TSUpdateSync' -c 'sleep 5' -c 'quit'
fi
if command -v asdf &> /dev/null; then if command -v asdf &> /dev/null; then
asdf update || true asdf update || true
asdf plugin update --all asdf plugin update --all