diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-04-15 11:09:55 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-04-15 11:09:55 +0200 |
| commit | 086f96e45c174eaf53a2cbae7d60554a66e44c74 (patch) | |
| tree | 05fe3f0feb0b3bab3d6b5207461667f10775335a /runcoms | |
| parent | 62cd2be5faf5d6523656b4245d1790c99fb5af9f (diff) | |
Add M1 z config
Diffstat (limited to 'runcoms')
| -rw-r--r-- | runcoms/zshrc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runcoms/zshrc b/runcoms/zshrc index 3166acf..98b5967 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -43,7 +43,7 @@ export VISUAL="nvim" # Python related variables export VIRTUAL_ENV_DISABLE_PROMPT=1 export WORKON_HOME=$HOME/.virtualenvs -export PROJECT_HOME=$HOME/Projects +export PROJECT_HOME=$HOME/Documents/projects export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python3" # GPG @@ -79,10 +79,10 @@ if [[ -s "/opt/homebrew/bin/brew" ]]; then fi # Z -if ! command -v brew &> /dev/null; then - . /usr/local/etc/profile.d/z.sh -else +if [[ -s "/opt/homebrew/bin/brew" ]]; then . /opt/homebrew/etc/profile.d/z.sh +else + . /usr/local/etc/profile.d/z.sh fi # ASDF |