Last active
August 5, 2018 05:09
-
-
Save mossheim/bf4fa403828d150f47f3e591c8bfd880 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
echo "If any of this doesn't work, make sure you're using a bash shell first." | |
echo " bash -il" | |
# need these to start | |
sudo apt-get -y install git vim curl ccache gist valgrind | |
git clone https://github.com/brianlheim/dotfiles ~/dotfiles | |
mv ~/dotfiles/* ~ | |
rm -r ~/dotfiles | |
mkdir ~/.vim | |
mkdir ~/.vim/autoload | |
git clone --recursive https://github.com/brianlheim/vimbundle ~/.vim/bundle | |
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim | |
# install ripgrep | |
curl -LO https://github.com/BurntSushi/ripgrep/releases/download/0.9.0/ripgrep_0.9.0_amd64.deb | |
dpkg -i ripgrep_0.9.0_amd64.deb | |
rm ripgrep_0.9.0_amd64.deb | |
# install hub | |
HUB=hub-linux-amd64-2.5.0 | |
curl -LO https://github.com/github/hub/releases/download/v2.5.0/$HUB.tgz | |
tar xzvf $HUB.tgz && cd $HUB && chmod +x install | |
sudo ./install | |
cd .. && rm -rf $HUB && rm $HUB.tgz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment