dotfiles/shells/zsh/zprofile
2023-02-08 22:05:44 -05:00

17 lines
270 B
Bash

# go path
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
# editor
export VISUAL=vim
export EDITOR="$VISUAL"
# add local paths
if [ -d $HOME/bin ] ; then
export PATH=$PATH:$HOME/bin
fi
if [ -d $HOME/.local/bin ] ; then
export PATH=$PATH:$HOME/.local/bin
fi