diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-04-15 11:31:09 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-04-15 11:31:09 +0200 |
| commit | fc635b3bee47459ab69662c132cb919f3a846ca1 (patch) | |
| tree | a68f6ae74dfe10d172651e658026be2b3e249d50 /runcoms | |
| parent | f60007b397ce9ad5c2b77392deaf0a4c12f72b3e (diff) | |
| parent | cb36b00f62edd19bda2c41011d6c72b2e235e653 (diff) | |
Merge branch 'main' of gitlab.com:rbdr/dotfiles
Diffstat (limited to 'runcoms')
| -rw-r--r-- | runcoms/zshrc | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/runcoms/zshrc b/runcoms/zshrc index 3166acf..6d2b00d 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 @@ -57,7 +57,11 @@ export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | hea if [[ -s "/opt/homebrew/bin/brew" ]]; then export FZF_VIM_PATH=/opt/homebrew/opt/fzf else - export FZF_VIM_PATH=/usr/local/opt/fzf + if [[ -s "/opt/homebrew/bin/brew" ]]; then + export FZF_VIM_PATH=/usr/local/opt/fzf + else + export FZF_VIM_PATH=/usr/share/doc/fzf/examples + fi fi ################################################################################ @@ -79,10 +83,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 |