You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
311 B
Bash
18 lines
311 B
Bash
# go path
|
|
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
|
|
export PATH=$PATH:$HOME/.config/rofi/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
|
|
|