Linux 终端神器tmux的快捷键与配置文件

快捷键

配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
vim ~/.tmux.conf                       # tmux配置文件的名字, 每个用户的配置文件可以不一样
set-option -g allow-rename off # 设置启动窗口时默认名字
set -g base-index 1 # 窗口下标起始
set -g pane-base-index 1



set -g prefix C-z #修改前缀键
unbind C-b

bind r source-file ~/.tmux.conf \; display "Reloaded!"
bind-key Left previous-window
bind-key Right next-window