tmux 配置使用

1、What’s tmux

tmux 是一个终端复用器: 可以激活多个终端或窗口, 在每个终端都可以单独访问,每一个终端都可以访问,运行和控制各自的程序.tmux类似于screen,可以关闭窗口将程序放在后台运行,需要的时候再重新连接。

2、How to install tmux

如果你创建的是workspace,那么已经安装好了tmux,如果你想全新安装tmux,只需要执行:

sudo apt-get install -y tmux

3、配置tmux

3.1、编辑 ~/.tmux.conf 文件,添加下面代码

 1set -sg escape-time 0
 2set-option -g history-limit 30000
 3# set-option -g default-shell /bin/zsh  # 使用 zsh 为默认 shell
 4set-window-option -g mode-keys vi # vi key
 5set-option -g status-keys vi
 6set -g default-terminal "tmux-256color"
 7  
 8# vim-like pane selection
 9bind l select-pane -R
10bind j select-pane -D
11bind k select-pane -U
12bind h select-pane -L
13  
14bind -r c-h resize-pane -L 5
15bind -r c-j resize-pane -D 1
16bind -r c-k resize-pane -U 1
17bind -r c-l resize-pane -R 5
18  
19# 在当前目录创建新窗口
20unbind-key c
21bind c new-window -c "#{pane_current_path}"
22unbind-key '"'
23unbind-key '%'
24bind '"' split-window -c '#{pane_current_path}'
25bind '%' split-window -h -c '#{pane_current_path}'
26# end
27  
28set -g base-index 1 # start windows numbering at 1
29setw -g pane-base-index 1 # make pane numbering consistent with windows
30set-option -g update-environment "DBUS_SESSION_BUS_ADDRESS DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"
31  
32# 显示工作区标题
33set -g pane-border-status top
34set -g pane-border-format "#{pane_index} #T"

3.2、重新导入tmux配置环境

tmux source ~/.tmux.conf

4、如何让zsh标题为目录名?

编辑 ~/.zshrc 加入如下代码段:

 1function set_tmux_title () {
 2    printf '\033]2;'"$1"'\033\\'
 3}
 4  
 5function auto_tmux_title() {
 6    emulate -L zsh
 7    printf '\033]2;'"${PWD:t}"'\033\\'
 8}
 9  
10auto_tmux_title
11chpwd_functions=(${chpwd_functions[@]} "auto_tmux_title")

5、Tmux cheet sheet

参考:https://gist.github.com/ryerh/14b7c24dfd623ef8edc7