blob: 2e9073926607c0e142f8b34b4e859549b37be1f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# vi:filetype=sh
function is_not_in_path() {
local regex="(:|^)${1//'/'/'\/*'}(:|$)"
[[ ! ${PATH} =~ $regex ]]
}
function appendpath() {
if is_not_in_path "$1"; then
PATH="$PATH:$1"
fi
}
function prependpath() {
if is_not_in_path "$1"; then
PATH="$1:$PATH"
fi
}
appendpath "$HOME/bin"
appendpath "$DOTFILEBASE/scripts"
appendpath "$HOME/.local/bin"
appendpath "$HOME/go/bin"
appendpath "$HOME/.cabal/bin"
prependpath "$HOME/.ghcup/bin"
export PATH
if which nvim > /dev/null 2>&1 && [ ! "$FORCE_VANILLA_VIM" = "yes" ] ; then
export EDITOR=nvim
else
export EDITOR=vim
fi
#Java Gradle hopme PATH
export GRADLE_USER_HOME=~/.gradle
export HISTTIMEFORMAT="%y-%m-%d %T "
export HISTSIZE=1000
export QT_QPA_PLATFORMTHEME=qt6ct
# Make the system name usable by other stuff too
export SYSTEM_NAME
|