personal configure files for vim, zsh, git and so on.
install vundle
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
install brew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install macvim --with-cscope --with-lua --override-system-vim --HEAD
git clone https://github.com/zeayes/dotfiles
cd dotfiles
ln -s vimrc ~/.vimrc
ln -s plugin.vim ~/.vim/plugin.vim
# config for jshint
ln -s jshintrc ~/.jshintrc
# config for scss-lint
ln -s scsslint.yml ~/.scsslint.yml
# config for plugin ternjs/tern_for_vim
ln -s tern-project ~/.tern-project
# for syntastic
# use flake8 to check python syntax
# sudo pip install pyflakes
sudo pip install flake8
sudo npm install jshint
sudo npm install scss-lint
sudo npm install tidy
cd ~/.vim/bundle/tern_for_vim
npm install
install YouCompleteMe
cd ~/.vim/bundle/YouCompleteMe
git submodule update --init --recursive
./install.sh --clang-completer --system-libclang
sudo apt-get install libclang-3.4-dev
cd ~/.vim/bundle/YouCompleteMe
git submodule update --init --recursive
cmake -G "Unix Makefiles" -DPATH_TO_LLVM_ROOT=/usr/lib/llvm-3.4 . ~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp
make ycm_core
make ycm_support_libs
npm -g install instant-markdown-d