# 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
# 鼠标可以选中窗格 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'
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