vim 插件配置

使用插件总管vbundle。

git clone https://github.com/VundleVim/Vundle.vim.git  ~/.vim/bundle/Vundle.vim

然后在.vimrc上编辑以下代码

set nocompatible
set rtp+=~/.vim/bundle/vundle/
highlight SyntasticErrorSign guifg=white guibg=black
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'scrooloose/syntastic'
Bundle 'Valloric/YouCompleteMe'
Bundle 'scrooloose/nerdcommenter'
Bundle 'tpope/vim-repeat'
Bundle 'junegunn/vim-easy-align'
Bundle "kshenoy/vim-signature"
Bundle 'ctrlpvim/ctrlp.vim'
Bundle 'tacahiroy/ctrlp-funky'
nnoremap fu :CtrlPFunky
Bundle 'bling/vim-airline'
Bundle 'kien/rainbow_parentheses.vim'
Bundle 'altercation/vim-colors-solarized'
Bundle 'tomasr/molokai'
Bundle 'chriskempson/vim-tomorrow-theme'
Bundle 'scrooloose/nerdtree'
Bundle 'jistr/vim-nerdtree-tabs'
Bundle "szw/vim-ctrlspace"
Bundle 'majutsushi/tagbar'
nmap  :TagbarToggle
Bundle 'jelera/vim-javascript-syntax'
Bundle "pangloss/vim-javascript"
Bundle 'marijnh/tern_for_vim'
Bundle 'nono/jquery.vim'
Bundle 'mattn/emmet-vim' 
Bundle 'Glench/Vim-Jinja2-Syntax'  

然后执行vim,输入:PluginInstall就可以安装这些插件了。

YouCompletMe

但是这里有一个YouCompleteMe插件很有可能会下载失败。那么可以从github上下载

git clone [email protected]:Valloric/YouCompleteMe.git  ~/.vim/bundle/

这个家伙很特殊需要特别安装一下

$ cd .vim/bundle/YouCompleteMe
$ ./install.py --clang-complete
然后会提示你这样一句话,照做就行
git submodule update --init --recursive
然后我还遇到一个问题

vim 插件配置_第1张图片
Screenshot from 2016-12-18 21-32-36.png

大概意思就是不支持 python,只需执行下面命令就可以啦!

sudo apt-get install python-dev libxml2-dev libxslt-dev

nerdtree

在终端输入:NERDTree就可以显示目录结构了,使用hjkl移动,o打开文件。
问题:

如何从编辑窗再返回目录结构窗?

syntastic

代码检查

问题:

.vimrc上添加filetype on这样一句,整个vim就没有颜色了,希望有人解答!

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