我的vim插件

使用参考文章:请点击
参考文章二:请点击
我的vim主体使用的是:Solarized,具体配置方法请查看

一,插件管理 (neobundle)

  • 安装请查看:安装点击地址
  • 配置 vim ~/.vimrc
"--------------------------------------------------------------------------
"NeoBundle 一款vim插件管理器
"linagxifeng - 2016-10-31
"--------------------------------------------------------------------------
"NeoBundle start
if has('vim_starting')
  if &compatible
    set nocompatible
  endif
  " Required:
  set runtimepath+=~/.vim/bundle/neobundle.vim/
endif

call neobundle#begin(expand('~/.vim/bundle/'))
" Required:
""NeoBundleFetch 'Shougo/neobundle.vim'
""NeoBundle 'toyamarinyon/vim-swift'
""NeoBundle 'plasticboy/vim-markdown'
""NeoBundle 'chemzqm/wxapp.vim'
""NeoBundle 'Shougo/unite.vim'
""NeoBundle 'othree/xml.vim'
"NeoBundle 'mattn/emmet-vim'
NeoBundle 'bling/vim-airline' 
call neobundle#end()
filetype plugin indent on
"NeoBundle end
  • 以上配置中,NeoBundle 'bling/vim-airline.vim' 是需要安装的插件, NeoBundle 'bling/vim-airline' ,其实真正的地址是:http://www.github.com/bling/vim-airline, 在vim中执行: NeoBundleInstall 就可以看到NeoBunle自动安装对象的插件了,在安装过程中如果报错,则可以关闭vim,重新打开,再次执行NeoBundleInstall.

二,状态栏插件 ( Vim-airline )

  • 这是一款状态栏增强插件,可以让你的Vim状态栏非常的美观,同时包括了buffer显示条扩展smart tab line以及集成了一些插件。
  • 配置地址

三,html插件 (emmet)

  • 请点击参考

四,查找文件 ( ctrlp )

  • 请点击参考

五,代码注释 (nerdcommenter)

  • 使用方法

六,侧边栏 ( tagbar )

  • 请参考

你可能感兴趣的:(我的vim插件)