Skip to content

Instantly share code, notes, and snippets.

@davidspry
Created June 4, 2025 00:02
Show Gist options
  • Save davidspry/2ff23e4bcd064579d016700062e36b64 to your computer and use it in GitHub Desktop.
Save davidspry/2ff23e4bcd064579d016700062e36b64 to your computer and use it in GitHub Desktop.
zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
# Fuzzy Finder
source <(fzf --zsh)
# VCPKG
export VCPKG_ROOT="$HOME/.vcpkg"
export VCPKG_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake"
# LLVM, GCC
export PATH="/opt/homebrew/opt/llvm/bin:/opt/homebrew/opt/gcc@15/bin:$VCPKG_ROOT:$PATH"
# Cargo
export PATH="$HOME/.cargo/bin:$PATH"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment