diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-03-19 14:07:25 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-03-19 14:07:25 +0100 |
| commit | b945717bde6231332093f4715e492c8ed7c6bd8a (patch) | |
| tree | 159ec5e84e6814c5476cd7be7df44e5a7a44e391 /runcoms | |
| parent | d02091b9d2370ad3316a294e64c7dac364c2e73e (diff) | |
Update zsh conf
Diffstat (limited to 'runcoms')
| -rw-r--r-- | runcoms/zprofile | 2 | ||||
| -rw-r--r-- | runcoms/zshrc | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/runcoms/zprofile b/runcoms/zprofile index b18b307..d0cb3b8 100644 --- a/runcoms/zprofile +++ b/runcoms/zprofile @@ -43,7 +43,7 @@ typeset -gU cdpath fpath mailpath path # Set the list of directories that Zsh searches for programs. path=( - /usr/local/{bin,sbin} + /opt/homebrew/{bin,sbin} $path ) diff --git a/runcoms/zshrc b/runcoms/zshrc index ea7d522..153d73d 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -29,11 +29,10 @@ export TERM=xterm-256color-italic # Paths # export JAVA_HOME=$(/usr/libexec/java_home) # Enable if using JDK, otherwise disable for performance export GOPATH=$HOME/Projects/go -export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH export ANDROID_HOME=$HOME/Library/Android/sdk export ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk-bundle export NVM_DIR=$HOME/.nvm -export PATH=$PATH:$HOME:/usr/local/opt/go/libexec/bin:${GOPATH//://bin:}/bin +export PATH=$PATH:$HOME:${GOPATH//://bin:}/bin export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS # Editor. @@ -44,7 +43,6 @@ export VISUAL="nvim" export VIRTUAL_ENV_DISABLE_PROMPT=1 export WORKON_HOME=$HOME/.virtualenvs export PROJECT_HOME=$HOME/Documents/projects -export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python3" # GPG export GPG_TTY=$(tty) @@ -95,5 +93,5 @@ fi if ! command -v brew &> /dev/null; then . $HOME/.asdf/asdf.sh else - . $(brew --prefix asdf)/asdf.sh + . $(brew --prefix asdf)/libexec/asdf.sh fi |