Skip to content

Instantly share code, notes, and snippets.

View maxRN's full-sized avatar
🏠
Working from home

Max Große maxRN

🏠
Working from home
  • TU Dresden
  • Dresden, Germany
  • 18:14 (UTC +02:00)
View GitHub Profile
@fedragon
fedragon / sdkman_with_fish
Last active June 1, 2024 21:38
How to use SDKMan! with Fish shell
# Install bass (https://github.com/edc/bass) to be able to use bash utilities in Fish
fisher add edc/bass
touch ~/.config/fish/functions/sdk.fish
# paste content in ~/.config/fish/functions/sdk.fish, then save
function sdk
bass source ~/.sdkman/bin/sdkman-init.sh ';' sdk $argv
end