Vim 8.1 is a minor release, a few new features have been added since Vim 8.0. The main new feature of Vim 8.1 is support for running a terminal in a Vim window, it sounds great for me.
So I decide to install Vim 8.1 on my main System.
Vim 8.1 is a minor release, a few new features have been added since Vim 8.0. The main new feature of Vim 8.1 is support for running a terminal in a Vim window, it sounds great for me.
So I decide to install Vim 8.1 on my main System.
Vim-plug 是一个针对 Vim 的插件管理插件,之前用的一直都是 vim-pathogen ,然后我秉承着“没毛病不要乱升级”的原则,一直也没弄过什么自动升级的插件,不过今天看到 reddit 有人推荐 Vim-plug ,还有它炫酷的更新动画吸引了我,终究还是尝试一下算了。
结果发现其实挺简单的。
首先,Ubuntu14.04里默认的Vim是不支持Python3的,在运行:
vim --version | grep python
后发现为:
-python3
解决方法有二,一是自己编译加上参数,另一个是使用现成的PPA:
sudo apt-add-repository ppa:pi-rho/dev
sudo apt-get update
sudo apt-get install vim
安装完毕后别忘了运行前面的命令看看python3前面是不是变成加号了。