使用插件总管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 <Leader>fu :CtrlPFunky<Cr>
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 <F9> :TagbarToggle<CR>
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 git@github.com:Valloric/YouCompleteMe.git ~/.vim/bundle/
这个家伙很特殊需要特别安装一下
$ cd .vim/bundle/YouCompleteMe
$ ./install.py --clang-complete
然后会提示你这样一句话,照做就行
git submodule update --init --recursive
然后我还遇到一个问题
大概意思就是不支持
python
,只需执行下面命令就可以啦!
sudo apt-get install python-dev libxml2-dev libxslt-dev
nerdtree
在终端输入:NERDTree
就可以显示目录结构了,使用hjkl
移动,o
打开文件。
问题:
如何从编辑窗再返回目录结构窗?
syntastic
代码检查
问题:
在
.vimrc
上添加filetype on
这样一句,整个vim就没有颜色了,希望有人解答!