Last active
July 24, 2022 18:08
-
-
Save kjaymiller/1548ad2f86738a91ab3c5138b85adfaa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Brew | |
% /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
brew install jq fzf peco thefuck asdf direnv exa nvim ripgrep bat postgresql fig; | |
# ASDF will require a little setup | |
asdf plugin add python; | |
asdf plugin add nodejs; | |
asdf plugin add rust; | |
# Install latest versions of those plugins | |
asdf install python latest; | |
asdf install nodejs latest; | |
asdf install rust latest; | |
# Set the latest versions to global | |
asdf global python latest; | |
asdf global nodejs latest; | |
asdf global rust latest; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment