2024-06-18 14:42:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ -f ~/.asdf/asdf.sh ]; then
|
|
|
|
|
|
|
|
# activate asdf
|
|
|
|
source ~/.asdf/asdf.sh
|
|
|
|
|
|
|
|
# activate completion
|
|
|
|
source ~/.asdf/completions/asdf.bash
|
|
|
|
|
|
|
|
fi
|
2024-06-21 15:22:52 +02:00
|
|
|
|
|
|
|
if [ -f "$HOME/.nix-profile/share/asdf-vm/asdf.sh" ]; then
|
|
|
|
. "$HOME/.nix-profile/share/asdf-vm/asdf.sh"
|
|
|
|
. "$HOME/.nix-profile/share/bash-completion/completions/asdf.bash"
|
|
|
|
fi
|