My personal cheatsheets for Navi
cheatsheets navi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add asdf cheat

I could never remember the options for this, this should help!

Lily Hannah 6a8cfee2 4ab6393b

+25
+25
coding/asdf.cheat
··· 1 + % asdf 2 + 3 + # Update all plugins 4 + asdf plugin update --all 5 + 6 + # List installed plugins 7 + asdf plugin list --urls 8 + 9 + # List currently installed tools and their currently set version 10 + asdf current 11 + 12 + # List installed versions for a tool 13 + asdf list <tool_name> 14 + 15 + # List latest stable version for a tool and compare it to your installed versions 16 + printf "Latest Stable Version\n" && asdf latest <tool_name> && printf "\nInstalled Versions\n" && asdf list <tool_name> 17 + 18 + # Install latest stable tool version 19 + asdf install <tool_name> latest 20 + 21 + # Set tool to latest installed stable version 22 + asdf set -u <tool_name> latest 23 + 24 + # Uninstall a tool version 25 + asdf uninstall <tool_name> <tool_version>