Skip to content

Commit

Permalink
[zsh] Add go bin path
Browse files Browse the repository at this point in the history
  • Loading branch information
matsp committed Oct 3, 2023
1 parent 8cb8008 commit 980ff9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .zshenv
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ export LANG=de_DE.UTF-8
export JUPYTERLAB_DIR=$HOME/.local/share/jupyter/lab
export TERM=xterm-256color
export DOCKER_HOST="unix://$XDG_RUNTIME_DIR/podman/podman.sock"
export GOPATH="$HOME/go"

typeset -U PATH path
# path=("$HOME/.local/bin" "$HOME/.pub-cache/bin" "$HOME/git/flutter/bin" "$HOME/.cargo/bin" "$path[@]")
path=("$HOME/.local/bin" "$HOME/.pub-cache/bin" "$HOME/.cargo/bin" "$path[@]")
path=("$HOME/.local/bin" "$HOME/.pub-cache/bin" "$HOME/.cargo/bin" "$HOME/go/bin" "$path[@]")
# path=("$HOME/.local/bin" "$HOME/.pub-cache/bin" "$path[@]")
export PATH

Expand Down

0 comments on commit 980ff9b

Please sign in to comment.