我的vim插件

2016-10-31  本文已影响122人  liangxifeng833

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

一,插件管理 (neobundle)

"--------------------------------------------------------------------------
"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

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

三,html插件 (emmet)

四,查找文件 ( ctrlp )

五,代码注释 (nerdcommenter)

六,侧边栏 ( tagbar )

上一篇下一篇

猜你喜欢

热点阅读