Ubuntu16.04+Anaconda环境下powerline安装,及tmux个性化

  • anaconda: 一个开源的Python发行版本,方便管理python环境
  • powerline:提供了TerminalVIM等工具中的状态提示功能
  • tmux:Linux中一种管理窗口的程序,提供窗口存储与恢复功能
  • tmux教程1:Linux终端复用神器-tmux使用梳理
  • tmux教程2:tmux 终端复用详解

1. 安装powerline

  1. 直接采用anaconda环境下的pip安装:
pip install powerline-status
  1. 查找powerline的安装位置:
pip show powerline-status

显示的Location信息将用于文件配置。例如我的显示:

Name: powerline-status
Version: 2.6
Summary: The ultimate statusline/prompt utility.
Home-page: https://github.com/powerline/powerline
Author: Kim Silkebaekken
Author-email: [email protected]
License: MIT
Location: /home/{username}/anaconda3/lib/python3.6/site-packages
  1. ./bashrc文件最后添加如下四行:
powerline-daemon -q
POWERLINE_BASH_CONTINUATION=1
POWERLINE_BASH_SELECT=1
. /home/{username}/anaconda3/lib/python3.6/site-packages/powerline/bindings/bash/powerline.sh

其中,最后一行的路径需根据上一步骤显示的Location信息调整。系统将会在每次启动命令行时执行这四条命令用于启动powerline。

  • 注意,要求在./bashrc文件中包含下方语句,并将上述四行写在该行下方。通常该行在安装anaconda时已添加,若未添加需要注意。
export PATH="/home/{username}/anaconda3/bin:$PATH"

因为powerline-daemon等程序需要通过/home/{username}/anaconda3/bin路径启动,否则可能报错:powerline/bindings/bash/../../../scripts/powerline-config:: No such file or directory

  1. 安装Powerline字体

Powerline中某些特殊符号需要用到专用字体,ubuntu系统中可直接用下方命令安装:

sudo apt-get install fonts-powerline
  1. 重新打开命令行,完成powerline安装。

2. vim配置powerline

  1. 首先找到vim配置文件vimrc的位置,进入相应文件夹:
locate vimrc
  1. 新建文件vimrc.local,并在其中添加如下内容:
set rtp+=/home/{username}/anaconda3/lib/python3.6/site-packages/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)
  • 注意,该方法将对全部用户的vim配置powerline
  1. 重启vim,完成powerline配置


    Ubuntu16.04+Anaconda环境下powerline安装,及tmux个性化_第1张图片
    vim+powerline

3. tmux配置

首先需要安装tmux,然后进行配置。tmux配置不需要完全安装powerline,但需要完成安装Powerline字体步骤。

参考gpakosz的tmux配置,直接执行下方语句即可。注意:该配置中的快捷键与tmux本身快捷键有所出入,但不影响使用。

cd
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .

安装完成后,可以使用Ctrl+b+m实现鼠标回滚、选择window等才做。其他tmux用法可参考下方参考资料2。

参考

CENALULU'S TECH BLOG-powerline

CENALULU'S TECH BLOG-tmux

你可能感兴趣的:(Ubuntu16.04+Anaconda环境下powerline安装,及tmux个性化)