blob: a6f8c6657e5a8f8da0cc28fe65404efcd446b417 (
plain) (
blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#!/bin/sh -l
append_path () {
case ":$PATH:" in
*:"$1":*)
;;
*)
PATH="${PATH:+$PATH:}$1"
esac
}
for i in "$HOME"/.local/bin "$HOME"/.local/opt/*/bin "$HOME/go/bin"
do
if test -d "$HOME/.local/opt/go/bin"
then
append_path "$i"
fi
done
export PATH
export XDG_CONFIG_HOME="$HOME/.config/"
export XDG_CACHE_HOME="$HOME/.cache/"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_STATE_HOME="$HOME/.local/state/"
if command -v nvim > /dev/null
then
export VISUAL=nvim
elif command -v vim > /dev/null
then
export VISUAL=vim
elif command -v vi > /dev/null
then
export VISUAL=vi
fi
if command -v ex > /dev/null
then
export EDITOR=nvim
elif command -v ed > /dev/null
then
export EDITOR=vim
fi
if command -v less > /dev/null
then
export PAGER=less
elif command -v more > /dev/null
then
export PAGER=more
fi
if test -f "$HOME"/.cargo/env
then
. "$HOME/.cargo/env"
fi
|