For a whole bunch of vim files online, here's just a few steps to record my new configuration environment. for viewing reference.
Installation Configuration Vundle
The first step is to create a vim directory and configuration file:
Under the ~ directory, add the. vimrc file and the. Vim/bundle/vundle directory.
The second step is to add the configuration contents of the Vundle in. VIMRC:
" Use vundle to manage plugin filetype off Set nocompatible set rtp+=~/.vim/bundle/vundlecall vundle#rc ()
Note: It's a good idea to put this in front of this configuration file
To install the plugin :
Turn on vim and execute in command mode
: Bundleinstall
Wait a moment and the automatic installation is complete.
Add plug-in action
This vundle can automatically go to the corresponding official to find the corresponding production, automatic download, for example, to use Tagbar, then the. VIMRC add
" Majutsushi/tagbar "
You can then install it automatically by executing the following command in command mode:
: Bundleinstall
Common Plugin References:
"SyntaxBundle'Asciidoc.vim'Bundle'Confluencewiki.vim'Bundle'Html5.vim'Bundle'Javascript-syntax'"Bundle ' Mako.vim 'Bundle'Moin.vim'Bundle'Python.vim--vasiliev'Bundle'Xml.vim' "ColorBundle'Desert256.vim'Bundle'Impact'Bundle'Vibrantink'Bundle'Vividchalk.vim' "FtpluginBundle'Python_fold' "Indent"Bundle ' Indent/html.vim 'Bundle'indentanything'Bundle'javascript-indentation'Bundle'mako.vim--torborg'Bundle'Gg/python.vim' "PluginBundle'The-nerd-tree'Bundle'autoclose--alves'Bundle'Auto_mkdir'Bundle'Cecutil'Bundle'Fcitx.vim'Bundle'Fencview.vim'"Bundle ' Fuzzyfinder 'Bundle'jsbeautify'Bundle'L9'Bundle'Mark'Bundle'Matrix.vim'Bundle'Mru.vim'Bundle'The-nerd-commenter'"Bundle ' Project.vim 'Bundle'Restart.vim'Bundle'Taglist.vim'"Bundle ' Templates.vim '"Bundle ' Vimim.vim 'Bundle'Zencoding.vim'Bundle'Css_color.vim'Bundle'Hallettj/jslint.vim'
Vim (i) Vim plug-in management tool-vundle