powerline是vim的狀態欄插件,同時也提供狀態欄和提示窗口功能給其他一些應用,包括zsh,bash,tmux,IPython,Awesome,i3 和 Qtile。這篇文字只談vim上的安裝。
python: https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tar.xz vim: https://github.com/vim/vim/archive/v7.4.1949.tar.gz
./configure --prefix=/usr/local/python351 make & make install
vim的安裝需要使用python的配置
./configure --prefix=/usr/local/vim741949 --enable-multibyte --with-tlib=ncurses --enable-cscope --with-features=big --with-python3-config-dir=/usr/local/python351/lib/python3.5/config-3.5m --enable-pythoninterp make & make install
將源碼(https://github.com/powerline/fonts)clone到本地後,執行如下命令:
./install.sh
我是用vundle來管理vim插件的,所以需要配置如下項:
Plugin 'powerline/powerline'
在vim的命令行模式下執行:
PluginInstall
Vim執行PluginInstall命令
set rtp+=~/.vim/bundle/powerline/powerline/bindings/vim set guifont=Sauce\ Code\ Powerline:h14.5 set laststatus=2 set encoding=utf-8 set t_Co=256 set number set fillchars+=stl:\ ,stlnc:\ set term=xterm-256color set termencoding=utf-8 set background=light
上面的配置中set rtp += {your_path}的{your_path}需要改成你自己的路徑。
按照下面的圖片將字體調整為powerline的字體。
terminal設置界面
字體設置界面
自此,重啟vim就可以看到效果了。如圖:
powerline效果圖(vim)
文章來源:胡旭個人博客 => 【原】powerline插件安裝之vim篇
參考文章:
http://blog.csdn.net/i_am_root/article/details/39483443 http://powerline.readthedocs.io/en/master/overview.html
轉載請注明出處,違者必究!
http://xxxxxx/Linuxjc/1136117.html TechArticle