美文网首页
配置文件~/.tmux.conf

配置文件~/.tmux.conf

作者: BlinKer | 来源:发表于2019-10-14 10:13 被阅读0次

    # 把ctrl-b改成ctrl-a,按起来顺手
    unbind C-b
    set -g prefix C-a

    # 当非活动窗口内容改变时发出提示
    setw -g monitor-activity on
    set -g visual-activity on

    # 把水平、竖直分割窗口的快捷键改成 '-' 和 ''
    unbind '"'
    bind - splitw -v
    unbind %
    bind \ splitw -h

    # 允许Alt + 方向键选择窗口
    bind -n M-Left select-pane -L
    bind -n M-Right select-pane -R
    bind -n M-Up select-pane -U
    bind -n M-Down select-pane -D

    相关文章

      网友评论

          本文标题:配置文件~/.tmux.conf

          本文链接:https://www.haomeiwen.com/subject/xuilmctx.html