Skip to content

Instantly share code, notes, and snippets.

@gurpreetatwal
Last active November 11, 2016 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gurpreetatwal/786e30b764a8cee2bc6f60070bc92835 to your computer and use it in GitHub Desktop.
Save gurpreetatwal/786e30b764a8cee2bc6f60070bc92835 to your computer and use it in GitHub Desktop.
Install script for linux systems
#!/bin/bash
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y vim curl git nodejs build-essential tmux xclip
redis-tools
sudo npm i -g npm bower browser-sync eslint nodemon yo bunyan gulp
# Create ssh keys
ssh-keygen -t rsa -b 4096
ssh-add ~/.ssh/id_rsa
# Git Config
git config --global user.email "gurpreetatwal@users.noreply.github.com"
git config --global user.name "Gurpreet Atwal"
git config --global core.editor vim
git config --global push.default current
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment