dotfiles/.zshenv

9 lines
252 B
Plaintext
Raw Normal View History

2019-10-03 21:28:01 +00:00
typeset -U PATH path
2024-10-20 12:45:01 +00:00
path=("$HOME/.local/bin" "$HOME/bin" "/opt/sublime_merge" "$path[@]", "$(go env GOPATH)/bin")
2019-10-03 21:28:01 +00:00
export PATH
# Autocomplètement supplémentaire (Docker)
if [ -d "$HOME/.zsh/completion" ] ; then
fpath=(~/.zsh/completion $fpath)
fi