Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save davidspry/2ff23e4bcd064579d016700062e36b64 to your computer and use it in GitHub Desktop.

Revisions

  1. davidspry created this gist Jun 4, 2025.
    14 changes: 14 additions & 0 deletions .zprofile
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    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"