asdf/asdf.fish

16 lines
405 B
Fish
Raw Normal View History

2016-04-18 00:33:14 -07:00
#!/usr/bin/env fish
2019-01-24 12:42:58 -07:00
set -x ASDF_DIR (dirname (status -f))
set -l asdf_data_dir (
if test -n "$ASDF_DATA_DIR"; echo $ASDF_DATA_DIR;
else; echo $HOME/.asdf; end)
2016-04-18 00:33:14 -07:00
# Add asdf to PATH
2019-01-24 12:42:58 -07:00
set -l asdf_bin_dirs $ASDF_DIR/bin $ASDF_DIR/shims $asdf_data_dir/shims
2016-04-18 00:33:14 -07:00
for x in $asdf_bin_dirs
2018-12-29 16:46:22 -07:00
if begin not contains $x $fish_user_paths; and test -d $x; end
2018-12-29 12:17:38 -07:00
set -gx fish_user_paths $fish_user_paths $x
end
end