6 lines
317 B
Text
6 lines
317 B
Text
export WINPATH=$(tr ':' '\n' <<<"$PATH" | grep -E '^(/mnt)/c/' | paste -sd ':')
|
|
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$WINPATH"
|
|
|
|
[[ -n $SSH_CONNECTION ]] && export EDITOR='vim' || export EDITOR='nvim'
|
|
|
|
[[ -f "$HOME/.config/local/env.zsh" ]] && source "$HOME/.config/local/env.zsh"
|