Update upgrade_system to omit neovim now that lazy.nvim kinda handles all of that automatically
This commit is contained in:
parent
3144a74452
commit
11759e4ebd
1 changed files with 1 additions and 5 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue