美文网首页
我的vim插件

我的vim插件

作者: liangxifeng833 | 来源:发表于2016-10-31 19:18 被阅读122次

    使用参考文章:请点击
    参考文章二:请点击
    我的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
    
    • 以上配置中,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插件

          本文链接:https://www.haomeiwen.com/subject/rpsputtx.html