1234567891011121314151617181920212223 |
- ````shell
- # .tmux.conf
- run-shell /home/seamew/software/tmux-onedark-theme/tmux-onedark-theme.tmux
- set -g @onedark_widgets " "
- set -g @onedark_time_format "%I:%M "
- set -g @onedark_date_format "%m/%d"
- set-option -g status-position bottom
- # 窗口序号从1开始计数
- set -g base-index 1
- # 自动保存会话
- 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-save-interval '15'
- set -g @continuum-restore 'on'
- set -g @resurrect-capture-pane-contents 'on'
- run '~/.tmux/plugins/tpm/tpm'
- run-shell ~/.tmux/plugins/resurrect/resurrect.tmux
- ````
|