Skip to content

Instantly share code, notes, and snippets.

@davidspry
Created June 4, 2025 00:00
Show Gist options
  • Select an option

  • Save davidspry/ad1dd2f5eb2b94600554e647a5ce0d4a to your computer and use it in GitHub Desktop.

Select an option

Save davidspry/ad1dd2f5eb2b94600554e647a5ce0d4a to your computer and use it in GitHub Desktop.
zshrc
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