Skip to content

Instantly share code, notes, and snippets.

@mixmix
Last active February 27, 2017 01:08
Show Gist options
  • Save mixmix/dd24cbcd1874ce602d5414496ca838d4 to your computer and use it in GitHub Desktop.
Save mixmix/dd24cbcd1874ce602d5414496ca838d4 to your computer and use it in GitHub Desktop.

Updating from APT repos

sudo apt-get update
sudo apt-get upgrade -y

Installing packages

sudo apt-get install curl git zsh build-essential -y

Installing oh-my-zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
sudo chsh -s /usr/bin/zsh

Installing NVM

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
tail ~/.bashrc | grep NVM  >> ~/.zshrc

Final config bits

git config --global core.editor atom

IMPORTANT : To compleate install, OPEN A NEW TERMINAL and run:

nvm install 6
nvm alias default 6
npm config set cache-min 99999
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment