dotfiles/.zshenv

9 lines
228 B
Plaintext
Raw Permalink Normal View History

2019-10-03 21:28:01 +00:00
typeset -U PATH path
2019-12-14 15:30:12 +00:00
path=("$HOME/.local/bin" "$HOME/bin" "/opt/sublime_merge" "$path[@]")
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