Tmux配置

2021-12-06 21:25:00 浏览数 (1)

配置tmux.config

代码语言:javascript复制
vim ~/.tmux.conf 

贴入:

代码语言:javascript复制
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @continuum-restore 'on'
run '~/.tmux/plugins/tpm/tpm'

set -g default-shell /bin/zsh

set -g default-command /bin/zsh
set-option -g prefix2 `
bind s setw synchronize-panes
set -g default-terminal "screen-256color"
set -g mouse on
set-option -g allow-rename off

使之生效:

代码语言:javascript复制
source ~/.tmux.conf 

0 人点赞