卸载原来的vim:
$ sudo apt-get remove --purge vim
$ suso apt-get clean
下载最新版本源码:
$ git clone https://github.com/vim/vim.git
$ cd vim
$ git pull
配置安装
$ cd src
$ make distclean #如果你以前编译过Vim
$ ./configure --with-features=huge --enable-python3interp --enable-pythoninterp --with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu/ --enable-rubyinterp --enable-luainterp --enable-perlinterp --with-python3-config-dir=config-3.6m-x86_64-linux-gnu --enable-multibyte --enable-cscope
$ make
$ sudo make install
$ sudo cp vim /usr/bin
- 参数说明如下:
--with-features=huge
:支持最大特性
--enable-rubyinterp
:打开对ruby编写的插件的支持
--enable-pythoninterp
:打开对python编写的插件的支持
--enable-python3interp
:打开对python3编写的插件的支持
--enable-luainterp
:打开对lua编写的插件的支持
--enable-perlinterp
:打开对perl编写的插件的支持
--enable-multibyte
:打开多字节支持,可以在Vim中输入中文
--enable-cscope
:打开对cscope的支持--with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu/
: 指定python 路径
--with-python-config-dir=/usr/lib/python3.5/config-3.5m-x86_64-linux-gnu/
: 指定python3路径
注:若是安装出问题,执行如下命令
$ sudo apt-get install python-dev
$ sudo apt-get install python3-dev
$ sudo apt-get install libncurses5-dev