# For Debian/Ubuntu
sudo apt-get install xsel exuberant-ctags ack-grep libclang-dev
- Install the dependencies
- Run the install.sh
# For Debian/Ubuntu
sudo apt-get install xsel exuberant-ctags ack-grep libclang-dev
sh install.sh
- Vundle -The plug-in manager for Vim
- Molokai -Molokai color scheme for Vim
- Vim-powerline -The ultimate statusline/prompt utility.
- GoldenView.Vim -Always have a nice view for vim split windows!
- PrettyGuides -Indent guides - displaying indent levels by vertical lines for Vim editor
- Ctrlp.vim -Fuzzy file, buffer, mru, tag, etc finder.
- Ack.vim -Vim plugin for the Perl module / CLI script 'ack'
- Vim-easymotion -Vim motions on speed!
- Nerdtree -A tree explorer plugin for vim
- Tagbar -Vim plugin that displays tags in a window, ordered by class etc
- Syntastic -Syntax checking hacks for vim
- Vim-unimpaired -unimpaired.vim: pairs of handy bracket mappings
- Nerdcommenter -Vim plugin for intensely orgasmic commenting
- Auto-pairs -Vim plugin, insert or delete brackets, parens, quotes in pair
- Vim-surround -Quoting/parenthesizing made simple
- Neocomplcache -Ultimate auto-completion system for Vim
- Clang_complete -Vim plugin that use clang for completing C/C++ code.
- Jedi-vim -Using the jedi autocompletion library for VIM.
- Emmet-vim -emmet for vim: http://emmet.io/ http://mattn.github.io/emmet-vim
- Ultisnips -This is an implementation of TextMates Snippets for the Vim Text Editor.
- sudo.vim -Allows one to edit a file with prevledges from an unprivledged session
- a.vim -Alternate Files quickly (.c --> .h etc)
,e
==> quit,E
==> quit all without saving,<enter>
==> don't highlight the search results- Easier moving between windows:
ctrl-j
==> downctrl-k
==> upctrl-h
==> leftctrl-l
==> right
- Easier moving between tabs
,n
==> previous tab,m
==> next tab
- Copy content to clipboard
- Select the content
- In visual mode, press
ctrl-c
,f
==> toggle ctrlp<F3>
==> toggle nerdtree<F4>
==> toggle tagbar<F5>
==> build a project<F9>
==> build and run(only available for a single source code file)- ack a word which is under the cursor
,a
==> toggle ack command- Edit the command
- Press
enter
ctrl-j
==> UltiSnipsExpandTrigger,s
==> GoldenViewSwitchMain,S
==> GoldenViewSwitchToggle
- Edit ~/.vim/plugins.vim
- Add the name of the plugin you want to install
- In normal mode, type
:BundleInstall
- Press
enter
- Edit ~/.vim/plugins.vim
- Comment the name of the plugin you want to uninstall
- In normal mode, type
:BundleClean
- Press
enter
- In normal mode, type
:BundleInstall!
- Press
enter
For details, you can see https://github.com/gmarik/vundle.