forked from Wyvern/macos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
29 lines (20 loc) · 1014 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
# Path to your Oh My Zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load
ZSH_THEME="powerlevel9k/powerlevel9k"
# Which plugins would you like to load?
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
# User configuration
# Created by `pipx` on 2024-10-03 09:56:52
export PATH="$PATH:$HOME/.local/bin"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '$HOME/google-cloud-sdk/path.zsh.inc' ]; then . '$HOME/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '$HOME/google-cloud-sdk/completion.zsh.inc' ]; then . '$HOME/google-cloud-sdk/completion.zsh.inc'; fi
# Google Cloud & Vertex AI Configuration
export GOOGLE_APPLICATION_CREDENTIALS="/path/to/your/credentials.json"
export VERTEXAI_PROJECT="your-project-id"
export VERTEXAI_LOCATION="your-location"