Skip to content

Instantly share code, notes, and snippets.

@mossheim
Last active August 5, 2018 05:09
Show Gist options
  • Save mossheim/bf4fa403828d150f47f3e591c8bfd880 to your computer and use it in GitHub Desktop.
Save mossheim/bf4fa403828d150f47f3e591c8bfd880 to your computer and use it in GitHub Desktop.
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