Files
dotfiles/home/fish/functions/update.fish
2024-07-31 13:11:51 +02:00

14 lines
531 B
Fish

function update --description "Updating Homebrew, Ruby, Python, Node.js, Neovim, and MacOS"
sudo -v
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
~/.tmux/plugins/tpm/bin/update_plugins all
gh extension upgrade --all
fisher update
nvim --headless "+Lazy! sync" +qa
# sudo softwareupdate -i -a
end