From 0e6d1ef4ba820ace6ed3f02c638033560d598a40 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 16 Jun 2023 19:20:31 +0200 Subject: [PATCH] Fully fix fnm with correct directly fix --- zsh/.zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 02e0476..8cf1c9e 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -166,8 +166,8 @@ export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin [ -f .aliases ] && source .aliases # fnm -if [ -f ~/.local/share/fnm ] +if [ -d /home/tim/.local/share/fnm ] then - export PATH="~/.local/share/fnm:$PATH" + export PATH="/home/tim/.local/share/fnm:$PATH" eval "`fnm env`" fi