From 5ff0c19584b51c49c4c91d7b3e11559e5fb99c3c Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 1 Dec 2023 12:46:31 +0100 Subject: [PATCH] chore(fish): change update function --- fish/functions/update.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fish/functions/update.fish b/fish/functions/update.fish index fcac5df..490a826 100644 --- a/fish/functions/update.fish +++ b/fish/functions/update.fish @@ -1,13 +1,13 @@ function update --description "Updating Homebrew, Ruby, Python, Node.js, Neovim, and MacOS" sudo -v - fisher update - ~/.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 + ~/.tmux/plugins/tpm/bin/update_plugins all + gh extension upgrade --all + fisher update + # sudo softwareupdate -i -a end