java的vim环境配置

来源:互联网 发布:js中array长度 编辑:程序博客网 时间:2024/06/01 12:20
安装git
apt-get install git
安装vundle
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 
配置 ~/.vimrc
set nocompatible 
filetype off 
set rtp+=~/.vim/bundle/Vundle.vim 
call vundle#begin() 
Plugin 'VundleVim/Vundle.vim' 
call vundle#end() 
filetype plugin indent on 
开始安装
vim 
:PluginInstall 
0 0
原创粉丝点击