tangled
alpha
login
or
join now
benharri.org
/
dotfiles
0
fork
atom
my shell and tool configurations
0
fork
atom
overview
issues
pulls
pipelines
tidy fnm and uv wrappers when not installed
benharri.org
1 year ago
1db21f0f
ed6859c0
+7
-4
2 changed files
expand all
collapse all
unified
split
fish
.config
fish
conf.d
fnm.fish
uv.env.fish
+4
-2
fish/.config/fish/conf.d/fnm.fish
···
1
1
# fnm
2
2
-
set PATH "/home/ben/.local/share/fnm" $PATH
3
3
-
fnm env | source
2
2
+
fish_add_path --path ~/.local/share/fnm
3
3
+
if command -q fnm
4
4
+
fnm env | source
5
5
+
end
+3
-2
fish/.config/fish/conf.d/uv.env.fish
···
1
1
-
2
2
-
source "$HOME/.cargo/env.fish"
1
1
+
if test -f ~/.cargo/env.fish
2
2
+
source ~/.cargo/env.fish
3
3
+
end