From: Ruben Beltran del Rio Date: Sun, 19 Mar 2023 13:07:25 +0000 (+0100) Subject: Update zsh conf X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/commitdiff_plain/b945717bde6231332093f4715e492c8ed7c6bd8a?ds=sidebyside Update zsh conf --- 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'"