Vim 插件安装

1、安装Vim:
我在Centos 7 使用下面命令安装的是vim版本是7.4版本,如果想使用vim网站下载安装,参考链接

yum install vim

2、安装 Vundle
在github上下载Vundle,保存目录在~/.vim/bundle/vundle路径下,需要自己配置.vimrc及.vimrc.bundles保存我们需要安装的插件。

git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

在.vimrc中增加下面的:

if filereadable(expand("~/.vimrc.bundles"))
  source ~/.vimrc.bundles
endif

在.vimrc.bundles增加下面的

set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'christoomey/vim-run-interactive'
Plugin 'Valloric/YouCompleteMe'
Plugin 'croaky/vim-colors-github'
Plugin 'danro/rename.vim'
Plugin 'majutsushi/tagbar'
Plugin 'kchmck/vim-coffee-script'
Plugin 'kien/ctrlp.vim'
Plugin 'pbrisbin/vim-mkdir'
Plugin 'scrooloose/syntastic'
Plugin 'slim-template/vim-slim'
Plugin 'thoughtbot/vim-rspec'
Plugin 'tpope/vim-Pluginr'
Plugin 'tpope/vim-endwise'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-rails'
Plugin 'tpope/vim-surround'
Plugin 'vim-ruby/vim-ruby'
Plugin 'vim-scripts/ctags.vim'
Plugin 'vim-scripts/matchit.zip'
Plugin 'vim-scripts/tComment'
Plugin 'mattn/emmet-vim'
Plugin 'scrooloose/nerdtree'
Plugin 'Lokaltog/vim-powerline'
Plugin 'godlygeek/tabular'
Plugin 'msanders/snipmate.vim'
Plugin 'jelera/vim-javascript-syntax'
Plugin 'altercation/vim-colors-solarized'
Plugin 'othree/html5.vim'
Plugin 'xsbeats/vim-blade'
Plugin 'Raimondi/delimitMate'
Plugin 'groenewege/vim-less'
Plugin 'evanmiller/nginx-vim-syntax'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'tomasr/molokai'
Plugin 'klen/python-mode'
call vundle#end()
filetype plugin indent on

安装脚本
在vim中运行:PluginInstall
或者在命令行直接安装而不打开vim运行vim +PluginInstall +qall
3、vim中文帮助文档

wget https://sourceforge.net/projects/vimcdoc/files/vimcdoc/1.8.0/vimcdoc-1.8.0.tar.gz

解压后执行脚本程序后,打开vim后 :help 会成中文。
4、taglist文件安装
在官方网站上面下载Taglist文件,直接解压后把该文件在/.vim/目录中解压缩,这会在你的/.vim/plugin和~/.vim/doc目录中各放入一个文件:
plugin/taglist.vim – taglist插件
doc/taglist.txt - taglist帮助文件

5、cscope安装

yum install cscope

具体很多插件的使用可以参照https://www.cnblogs.com/snowbook/p/5923770.html

你可能感兴趣的:(【工作总结】)