my shell and tool configurations

tidy fnm and uv wrappers when not installed

+7 -4
+4 -2
fish/.config/fish/conf.d/fnm.fish
··· 1 1 # fnm 2 - set PATH "/home/ben/.local/share/fnm" $PATH 3 - fnm env | source 2 + fish_add_path --path ~/.local/share/fnm 3 + if command -q fnm 4 + fnm env | source 5 + end
+3 -2
fish/.config/fish/conf.d/uv.env.fish
··· 1 - 2 - source "$HOME/.cargo/env.fish" 1 + if test -f ~/.cargo/env.fish 2 + source ~/.cargo/env.fish 3 + end