fix(zsh): use $HOME rather than hardcoded path

This commit is contained in:
Badstagram 2025-12-15 15:08:21 +00:00
parent 8d621b4a32
commit ea821c6ef8

View File

@ -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`"