安装 Powerline 时无需 vim 绑定

安装 Powerline 时无需 vim 绑定

使用 Ubuntu 16.04,我安装了 powerline ( sudo apt install powerline);我成功地为 bash 启用了它,但是当我尝试在我的.vimrc文件中启用它时,使用以下几行:

" Powerline
set rtp+=/usr/share/powerline/bindings/vim/
set laststatus=2
set t_Co=256

它不起作用。我进行了一些故障排除,发现它/usr/share/powerline/bindings/vim/不存在,尽管有许多其他绑定的文件夹(例如 bsh、awesome 等)。

答案1

对于来自 Google 的用户,~/.vimrc如果您已经从发行版安装了 powerline,请添加以下内容 (sudo apt-get install powerline)。

set rtp+=/usr/share/vim/addons/
set laststatus=2
set t_Co=256

答案2

下列:

sudo cp -r /home/$USER/.local/lib/python3.5/site-packages/powerline/bindings/vim /usr/share/powerline/bindings

在 Ubuntu 16.04 上,这个问题已经修复。请进行$USER相应替换。您可能还需要将该路径中的文件夹替换python3.5为安装了 powerline 的正确 python 版本。

我不知道为什么 vim 的绑定默认在系统范围内不可用,即放在 下/usr/share/powerline/bindings/

相关内容