Skip to content

Instantly share code, notes, and snippets.

@veggiemonk
Last active April 25, 2016 08:20
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 veggiemonk/ab91072a48a1d2bff69182d1f9fd2781 to your computer and use it in GitHub Desktop.
Save veggiemonk/ab91072a48a1d2bff69182d1f9fd2781 to your computer and use it in GitHub Desktop.
# Node
## Install n
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y git
sudo chown -R veggiemonk:veggiemonk /usr/local
git clone https://github.com/tj/n.git ~/code/n
cd ~/code/n && make install
n 5.9.1
npm -g i diff-so-fancy npm pure-prompt npm-check caniuse-cmd
# Ubuntu
## Packages
sudo apt-get update
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y \
curl wget htop glances zsh \
tree gdebi alien cinnamon gnome-terminal filezilla \
httpie openssh-server tig gnome-icon-theme-full xclip \
build-essential zlib1g-dev autoconf autogen automake ctags cmake shellcheck
## PPA
sudo add-apt-repository -y ppa:webupd8team/java
sudo add-apt-repository -y ppa:webupd8team/atom
sudo add-apt-repository -y ppa:git-core/ppa
# Chrome shit
#wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key -y add -
#sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
# better download the deb....
sudo apt-get update
## oracle shit
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y oracle-java8-installer atom git-core google-chrome-stable
# DEV ENV
## Install fonts, theme
git clone https://github.com/powerline/fonts.git ~/code/fonts
cd ~/code/fonts && make install && cd ~
git clone https://github.com/chriskempson/base16-gnome-terminal.git ~/code/base16-gnome-terminal
source ~/code/base16-gnome-terminal/base16-tomorrow.dark.sh
## OH MY ZSH
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
# set zsh as default shell
chsh -s $(grep /zsh$ /etc/shells | tail -1)
## install zsh plugins
source ~/.dotfiles/install/install_zsh_plugins
## install dotfiles
git clone git@github.com:veggiemonk/basic_dotfiles.git ~/.dotfiles
source ~/.dotfiles/install/link_config_files
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y git-extras ffmpeg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment