+6
-1
.zshrc
+6
-1
.zshrc
···
32
32
export PATH=~/.zvm/bin:$PATH
33
33
export PATH=~/.local/bin:$PATH
34
34
35
-
eval "$(zoxide init zsh --cmd cd)"
36
35
if [ -x "$(which starship)" ]; then
37
36
eval "$(starship init zsh)"
38
37
else
39
38
echo "starship not in path"
39
+
fi
40
+
41
+
if [ -x "$(which zoxide)" ]; then
42
+
eval "$(zoxide init zsh --cmd cd)"
43
+
else
44
+
echo "zoxide not in path"
40
45
fi
41
46
42
47
export GPG_TTY=$(tty)