Files
dotfiles/fish/functions/update.fish
Stefan Imhoff 48d5aaa02a chore: backup
2023-10-13 13:22:41 +02:00

14 lines
529 B
Fish

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
end