Last active
April 19, 2017 02:44
-
-
Save jasonmorganson/c55bc280ecfcb26ff55a to your computer and use it in GitHub Desktop.
Setup Linux
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
# Update | |
sudo apt-get update | |
# Install dependencies | |
sudo apt-get install -y \ | |
build-essential \ | |
cmake \ | |
curl \ | |
git \ | |
m4 \ | |
ruby \ | |
texinfo \ | |
libbz2-dev \ | |
libcurl4-openssl-dev \ | |
libexpat-dev \ | |
libncurses-dev \ | |
zlib1g-dev \ | |
python-dev \ | |
zsh | |
# Set Zsh as default shell | |
chsh -s /bin/zsh | |
# Install linuxbrew | |
git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew | |
# Add taps | |
brew tap \ | |
homebrew/binary \ | |
homebrew/dupes \ | |
homebrew/php \ | |
homebrew/versions \ | |
neovim/neovim | |
# Install brews | |
brew install \ | |
awscli \ | |
git \ | |
httpie \ | |
hub \ | |
jq \ | |
neovim \ | |
s3cmd \ | |
task \ | |
the_silver_searcher \ | |
thefuck \ | |
tig \ | |
tmux |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment