Change z command to f and add fnm

This commit is contained in:
Tim 2025-05-21 16:09:38 +02:00
parent cae0099a02
commit e7fa8113a6

View File

@ -21,6 +21,17 @@ set fish_complete_path (path resolve $__fish_config_dir/completions/*/) $fish_co
set -gx XDG_CONFIG_HOME (path resolve $HOME/.config)
# local fish file
if test -f $HOME/local.fish
source $HOME/local.fish
end
end
# set z to f
set -U Z_CMD f
# fnm
set FNM_PATH "$HOME/.local/share/fnm"
if test -d "$FNM_PATH"
set PATH "$FNM_PATH" $PATH
fnm env | source
end