VIM使用(一) VIM插件管理利器-vundle

有關VIM的文件網上一大堆,這裏只是記錄一下我新配置環境的步驟.以備查看參考.css

sudo apt-get install git
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

 

 安裝配置vundlehtml

第一步,建立VIM的目錄和配置文件:html5

在~目錄下,添加.vimrc文件和.vim/bundle/vundle目錄.python

第二步,在.vimrc中添加Vundle的配置內容:git

 

"use vundle to manage plugin
filetype off
set nocompatible
set rtp+=~/.vim/bundle/vundle
call vundle#rc()

 

注:最好是將這部份內容放到此配置文件的最前面  github

 

安裝插件sql

打開VIM,在命令模式下執行 vim

:BundleInstall

等等一下子就自動安裝完成了.spa

 

添加插件操做插件

 

這個Vundle能夠自動去相應的官方去查找相應的製做,自動下載,例如,要使用tagbar,則在.vimrc添加

Bundle "majutsushi/tagbar"   

而後一樣在命令模式下執行下面命令便可自動安裝了:

:BundleInstall

 

常見插件參考:

" Syntax
Bundle 'asciidoc.vim'
Bundle 'confluencewiki.vim'
Bundle 'html5.vim'
Bundle 'JavaScript-syntax'
"Bundle 'mako.vim'
Bundle 'moin.vim'
Bundle 'python.vim--Vasiliev'
Bundle 'xml.vim'
 
" Color
 
Bundle 'desert256.vim'
Bundle 'Impact'

Bundle 'vibrantink'
Bundle 'vividchalk.vim'
 
" Ftplugin
Bundle 'python_fold'
 
" Indent
"Bundle 'indent/html.vim'
Bundle 'IndentAnything'
Bundle 'Javascript-Indentation'
Bundle 'mako.vim--Torborg'
Bundle 'gg/python.vim'
 
" Plugin
Bundle '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'
相關文章
相關標籤/搜索