一直喜欢powerline插件所带来的vim和Terminal效果。今天上午不想写专利,就抽出空闲,在自己的Ubuntu上安装了powerline。之间出现一些错误,现在记录下来,方便以后的人吧。
1.下载powerline
因为Ubuntu16.0LTS自带了Python3和Python2版本,但是powerline仅支持python2.x系列,因此,使用pip安装,需要这样写:撒旦
pip2 install powerline-status
2.查看poweline的安装地址
在Terminal中输入
pip2 show powerline-status
得到的Location即为所在的地址。记住!一般来说,此处的地址应该为/user/local/开头的地址!如果接下来的过程出现错误,请重点检查此项内容!
3.注册到Terminal中
复制下列文档
. /Location/powerline/bindings/bash/powerline.sh
此处的Location是在第2部中你自己的安装地址!
4.注册到VIM中
在Terminal中输入以下代码
vim .vimrc
系统会创建.vimrc文件,打开.vimrc文件,输入下列代码
set rtp+=/Location/powerline/bindings/vim
" These lines setup the environment to show graphics and colors correctly.
set nocompatible
set t_Co=256
let g:minBufExplForceSyntaxEnable = 1
if ! has('gui_running')
set ttimeoutlen=10
augroup FastEscape
autocmd!
au InsertEnter * set timeoutlen=0
au InsertLeave * set timeoutlen=1000
augroup END
endif
set laststatus=2 " Always display the statusline in all windows
set guifont=Inconsolata\ for\ Powerline:h14
set noshowmode " Hide the default mode text (e.g. -- INSERT -- below the statusline)
仍然的,Location是你在第2部得到的自己的安装地址~!