安装
安装依赖:
sudo apt install git make clang libtool-bin
下载源码:
git clone --depth=1 https://github.com/vim/vim.git vim_source
cd vim
也可以从 http://github.com/vim/vim/tags
下载,在我写这篇笔记的时候最新的版本是 v8.2.4995
wget -c https://github.com/vim/vim/archive/refs/tags/v8.2.4995.tar.gz
tar -xzvf v8.2.4995.tar.gz
cd vim-8.2.4995/
vim 功能配置
进入编译的工作路径
cd src
如果需要和系统进行复制粘贴操作,就需要为vim添加剪切板的支持
sudo apt install libxt-dev
如果需要 GUI 界面支持
sudo apt install libgtk-3-dev
添加 python3 支持
sudo apt install libpython3-dev
编辑 Makefile 文件,取消注释
CONF_OPT_PYTHON3 = --enable-python3interp
更加详细的配置可以看 Makefile 的内容,不过这些功能对于我来说已经够用了
编译和安装
为了提高编译的速度使用 -j
参数,-j
后面的数字就是 cpu 所支持的线程数
make -j8
make install