Skip to content

Instantly share code, notes, and snippets.

@lzhoucs
Last active June 26, 2016 01:08
Show Gist options
  • Save lzhoucs/c4d18eacac24e0749e78338e2b331562 to your computer and use it in GitHub Desktop.
Save lzhoucs/c4d18eacac24e0749e78338e2b331562 to your computer and use it in GitHub Desktop.
linux packages check list for web development
  1. nvm & node
git clone https://github.com/creationix/nvm.git ~/.nvm && cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`
nvm install v6  // assume this is done: source "$NVM_DIR/nvm.sh" 
  1. rvm & ruby
gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
\curl -sSL https://get.rvm.io | bash -s stable
rvm install 2.3.1
  1. linuxbrew
  • install packages
  1. pt
wget https://github.com/monochromegane/the_platinum_searcher/releases/download/v2.1.2/pt_linux_amd64.tar.gz
tar -xf pt_linux_amd64.tar.gz
cd pt_linux_amd64
cp pt /usr/local/bin
  1. ag
git clone [email protected]:ggreer/the_silver_searcher.git
git clone [email protected]:ggreer/the_silver_searcher.git
cd the_silver_searcher
./build.sh
sudo make install
  1. zsh

  2. emacs

  3. source code pro fonts

wget https://github.com/adobe-fonts/source-code-pro/archive/2.010R-ro/1.030R-it.zip
sudo unzip 1.030R-it.zip -d /usr/share/fonts/
sudo fc-cache 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment