tmux 配置备份

配置文件 ~/.tmux.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This is a tmux configure file
# 取消默认Ctrl+b的前缀绑定,绑定Ctrl+f为新的快捷发送前缀方式
unbind C-o
set -g prefix C-f

# Copy模式下使用vim快捷操作方式
setw -g mode-keys vi

# split window with p/v after C-s
bind p split-window -h
bind v split-window -v

# move into left/Down/Up/Right panes with h/j/k/l after C-s
# bind h select-pane -L
# bind j select-pane -D
# bind k select-pane -U
# bind l select-pane -R

# resize panes forward left/right/Down/Up with </>/-/+ after C-s
bind < resize-pane -L 10
bind > resize-pane -R 10
bind - resize-pane -D 10
bind + resize-pane -U 10

# 鼠标可以选中窗格
set-option -g mouse on
# 鼠标滚轮可以使用
set-window-option -g mouse on

# 分屏后如何保留先前窗格的路径
bind c new-window -c "#{pane_current_path}"

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-restore 'on'

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

复制模式步骤

1
2
3
4
5
6
我的控制键为:C-f
1、 C-f [ 进入复制模式
2、 参考上表移动鼠标到要复制的区域,移动鼠标时可用vim的搜索功能"/","?"
3、 安空格键开始选择复制区域
4、 选择完成后安enter键退出
5、 C-f ] 粘贴


安装tpm

  1. git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

    Put this at the bottom of .tmux.conf:
    in tmux use ctrl + f then shift +i

    1
    2
    3
    4
    5
    6
    7
    8
    # List of plugins
    set -g @plugin 'tmux-plugins/tpm'
    set -g @plugin 'tmux-plugins/tmux-sensible'

    # Other examples:
    # set -g @plugin 'github_username/plugin_name'
    # set -g @plugin 'git@github.com/user/plugin'
    # set -g @plugin 'git@bitbucket.com/user/plugin'

Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run ‘~/.tmux/plugins/tpm/tpm’
Reload TMUX environment so TPM is sourced:

type this in terminal if tmux is already running
$ tmux source ~/.tmux.conf

https://www.zybuluo.com/mwumli/note/149542


tmux环境保存

1
2
1. https://github.com/tmux-plugins/tmux-resurrect
2. https://github.com/tmux-plugins/tmux-continuum

  1. 手动保存,control-f control-s
  2. 每15分钟自动保存,开机自动启动tmux,启动后自动回复到上次的环境

参考资料

http://blog.csdn.net/yangzhongxuan/article/details/6890232

http://mingxinglai.com/cn/2012/09/tmux/

http://harttle.com/2015/11/06/tmux-startup.html

http://www.ifmicro.com/tmux/

http://cenalulu.github.io/linux/tmux/

http://guoqiao.me/post/2016/tmux

https://linuxtoy.org/archives/tmux-resurrect-and-continuum.html