zl程序教程

您现在的位置是:首页 >  其他

当前栏目

Tmux配置

2023-04-18 13:07:35 时间

配置tmux.config

vim ~/.tmux.conf 

贴入:

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

使之生效:

source ~/.tmux.conf