tmux相关

tmux常用配置文件

set -s escape-time 0

# Remap window navigation to vim
unbind-key j
bind-key j select-pane -D
unbind-key k
bind-key k select-pane -U
unbind-key h
bind-key h select-pane -L
unbind-key l
bind-key l select-pane -R


bind -n M-k resize-pane -U 5
bind -n M-j resize-pane -D 5
bind -n M-h resize-pane -L 5
bind -n M-l resize-pane -R 5

tmux中使用spacemacs时,按esc后反应慢,无法立即退出到vi模式

vim ~/.tmux.conf
在文件末尾中添加如下内容
set -s escape-time 0
保存退出
重新加载tmux的配置文件或新开一个session即可生效。

你可能感兴趣的:(tmux相关)