Last active
July 25, 2020 00:48
-
-
Save rdkr/5e57880d90bbddf9d688ffafdfe44217 to your computer and use it in GitHub Desktop.
This file contains 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
brew install \ | |
bash \ | |
zsh \ | |
make \ | |
openssh \ | |
git \ | |
coreutils \ | |
findutils \ | |
gnu-sed \ | |
gnu-tar \ | |
grep \ | |
gnupg \ | |
watch \ | |
ipcalc \ | |
curl \ | |
wget \ | |
rsync \ | |
nmap \ | |
netcat \ | |
jq \ | |
bat \ | |
the_silver_searcher | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
echo 'export PATH="/usr/local/opt/ncurses/bin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/make/libexec/gnubin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/gettext/bin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/findutils/libexec/gnubin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/opt/curl/bin:$PATH"' >> ~/.zshrc | |
echo 'export PATH="/usr/local/sbin:$PATH"' >> ~/.zshrc | |
brew cask install \ | |
iterm2 \ | |
visual-studio-code \ | |
docker \ | |
wireshark \ | |
alfred \ | |
spectacle | |
brew cask install \ | |
firefox \ | |
1password \ | |
veracrypt \ | |
spotify \ | |
whatsapp \ | |
textual \ | |
zerotier-one | |
brew tap homebrew/cask-fonts | |
brew cask install \ | |
font-fira-code | |
brew tap homebrew/cask-drivers | |
brew cask install \ | |
logitech-options | |
brew cask install \ | |
google-chrome \ | |
slack \ | |
google-cloud-sdk | |
brew install \ | |
pyenv \ | |
pipenv | |
echo 'eval "$(pyenv init -)"' >> ~/.zshrc | |
pyenv install 3.7.4 | |
pyenv global 3.7.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment