Vim
My vimrc config: https://github.com/waynepai/ubuntu_setup/blob/master/vimrc
Some plugin
The most plugins can install by NeoBundle easily, but following plugins need more steps to configure.
YouCompleteMe
Very powerful auto-complete plugin for vim !!!
Quick install
cd ~/.vim/bundle/
git clone https://github.com/Valloric/YouCompleteMe.git
cd YouCompleteMe
./install.py --clang-comleter --tern-completer
Details see the Valloric/YouCompleteMe
TODO: I can not auto-complete c/c++ functions with YCM now.
Powerline
Beautiful status line for vim.
Quick install
cd ~/.vim/bundle/
git clone https://github.com/Lokaltog/powerline vim-powerline
It need patched font
git clone https://github.com/powerline/fonts
cd fonts
./install.sh
Details see the vim-powerline