Last active
October 24, 2015 20:24
-
-
Save guzmonne/012fac0a1082dc1e69f5 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
#!/bin/bash | |
echo | |
echo "Installing Custom BashRC!" | |
echo "------------------" | |
echo | |
# Source custom .bashrc | |
curl https://gist.githubusercontent.com/guzmonne/307779e11fb9116af4a5/raw/346248c42045cd54e9b445869c195812f4b1cdb0/.bashrc >> .bashrc | |
source .bashrc | |
echo | |
echo "Installing Meteor!" | |
echo "------------------" | |
echo | |
# Install Meteor | |
curl https://install.meteor.com/ | sh | |
echo | |
echo "Installing NodeJS!" | |
echo "------------------" | |
echo | |
# Install NodeJS | |
curl -sL https://deb.nodesource.com/setup | sudo bash - | |
apt-get install -y nodejs | |
apt-get install -y build-essential | |
echo | |
echo "Installing Vim-Starter!" | |
echo "-----------------------" | |
echo | |
# Install Vim-Starter | |
echo "runtime vimrc" > ~/.vimrc && mkdir ~/.vim && cd ~/.vim && git clone https://github.com/joom/vim-starter.git . && git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim && vim +PluginInstall | |
echo | |
echo "Installing git!" | |
echo "---------------" | |
echo | |
# Install git | |
apt-get install -y git | |
git config --global user.name "Guzmán Monné" | |
git config --global user.email [email protected] | |
echo | |
echo "All Done!" | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment