From 1626032b31ab1301175f4a9f83c5a277926a9fea Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Wed, 11 Oct 2023 12:54:11 +0200 Subject: [PATCH] feat: add a few more update commands --- fish/functions/update.fish | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fish/functions/update.fish b/fish/functions/update.fish index c300b3f..bf64cb5 100644 --- a/fish/functions/update.fish +++ b/fish/functions/update.fish @@ -1,9 +1,13 @@ function update --description "Updating Homebrew, Ruby, Python, Node.js, Neovim, and MacOS" sudo -v + ~/.tmux/plugins/tpm/bin/update_plugins all + gh extension upgrade --all + nvim --headless "+Lazy! sync" +qa brew update && brew outdated && brew upgrade && brew cleanup sudo gem update --system && sudo gem update && gem cleanup all pip install --upgrade pip pip list -o --format columns | cut -d' ' -f1 | xargs -n1 pip install -U pnpm update -g - # sudo softwareupdate -i -a + fisher update + sudo softwareupdate -i -a end