Make zsh config relative

This commit is contained in:
Tim 2024-08-14 14:56:57 +02:00
parent 1fc0a425ee
commit 6fbdeded26

View File

@ -85,11 +85,11 @@ export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
#export KUBECONFIG #export KUBECONFIG
#if [ $commands[kubectl] ]; then source <(kubectl completion zsh); fi #if [ $commands[kubectl] ]; then source <(kubectl completion zsh); fi
[ -f .aliases ] && source .aliases [ -f $HOME/.aliases ] && source $HOME/.aliases
# fnm # fnm
if [ -d /home/tim/.local/share/fnm ] if [ -d $HOME/.local/share/fnm ]
then then
export PATH="/home/tim/.local/share/fnm:$PATH" export PATH=$HOME/.local/share/fnm:$PATH
eval "`fnm env`" eval "`fnm env`"
fi fi