blob: 380bdf2f89a80c35ce880083626c8b19da128089 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# vi:filetype=sh
function appendpath() {
local regex="[:^]${1//'/'/'\/'}[:$]"
if [[ ! ${PATH} =~ $regex ]]; then
PATH=$PATH:$1
fi
}
appendpath "$HOME/bin"
appendpath "$DOTFILEBASE/scripts"
appendpath "$HOME/.local/bin"
export PATH
unset appendpath
export EDITOR=nvim
#Java Gradle hopme PATH
export GRADLE_USER_HOME=~/.gradle
|