Created
June 4, 2025 00:00
-
-
Save davidspry/ad1dd2f5eb2b94600554e647a5ce0d4a to your computer and use it in GitHub Desktop.
zshrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias ls='eza' | |
| alias la='eza -a' | |
| alias ll='eza -l' | |
| function upm() | |
| { | |
| # Homebrew | |
| brew update | |
| brew upgrade | |
| brew upgrade --cask --greedy | |
| brew cleanup | |
| brew autoremove | |
| # vcpkg | |
| git -C $VCPKG_ROOT pull --quiet | |
| vcpkg upgrade --no-dry-run | |
| vcpkg remove --outdated --recurse | |
| } | |
| # Starship | |
| source <(starship init zsh) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment