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 | |
| parent | d02091b9d2370ad3316a294e64c7dac364c2e73e (diff) | |
Update zsh conf
| -rw-r--r-- | runcoms/zprofile | 2 | ||||
| -rw-r--r-- | runcoms/zshrc | 6 | ||||
| -rw-r--r-- | zsh/modules/aliases.zsh | 4 |
3 files changed, 5 insertions, 7 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 diff --git a/zsh/modules/aliases.zsh b/zsh/modules/aliases.zsh index 0f69a9e..ad39122 100644 --- a/zsh/modules/aliases.zsh +++ b/zsh/modules/aliases.zsh @@ -14,7 +14,7 @@ alias ta="tmux attach -t" alias tn="tmux new -s" # Simple python server -alias spawn-server="python -m SimpleHTTPServer" +alias spawn-server="python -m http.server 9000" # Git aliases alias g='git' @@ -28,7 +28,7 @@ alias gm='git merge' alias gp='git push' # Graphicsmagick override -alias grm="/usr/local/bin/gm" +alias grm="$(brew --prefix)/bin/gm" # JS friendly tree alias arbol="tree -I 'node_modules|bower_components|doc|__pycache__|\.pyc'" |