From 6fbdeded26e3788c9f409e637b2674e0ea013798 Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 14 Aug 2024 14:56:57 +0200 Subject: [PATCH] Make zsh config relative --- zsh/.zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index c0b586e..2663aa0 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -85,11 +85,11 @@ export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin #export KUBECONFIG #if [ $commands[kubectl] ]; then source <(kubectl completion zsh); fi -[ -f .aliases ] && source .aliases +[ -f $HOME/.aliases ] && source $HOME/.aliases # fnm -if [ -d /home/tim/.local/share/fnm ] +if [ -d $HOME/.local/share/fnm ] then - export PATH="/home/tim/.local/share/fnm:$PATH" + export PATH=$HOME/.local/share/fnm:$PATH eval "`fnm env`" fi