From ea821c6ef8cca253440f96e9cb6e1fe919fd46ca Mon Sep 17 00:00:00 2001 From: Badstagram Date: Mon, 15 Dec 2025 15:08:21 +0000 Subject: [PATCH] fix(zsh): use $HOME rather than hardcoded path --- dot_zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_zshrc b/dot_zshrc index 890a9c1..5ce20dd 100644 --- a/dot_zshrc +++ b/dot_zshrc @@ -16,7 +16,7 @@ bindkey -M emacs '^[[1;5D' backward-word # ctrl +  = move cursor to start bindkey -M emacs '^[[1;5C' forward-word # ctrl +  = move cursor to end of next word # fnm -FNM_PATH="/home/bad/.local/share/fnm" +FNM_PATH="$HOME/.local/share/fnm" if [ -d "$FNM_PATH" ]; then export PATH="$FNM_PATH:$PATH" eval "`fnm env`"