配置文件md 678 B

1234567891011121314151617181920212223
  1. ````shell
  2. # .tmux.conf
  3. run-shell /home/seamew/software/tmux-onedark-theme/tmux-onedark-theme.tmux
  4. set -g @onedark_widgets " "
  5. set -g @onedark_time_format "%I:%M "
  6. set -g @onedark_date_format "%m/%d"
  7. set-option -g status-position bottom
  8. # 窗口序号从1开始计数
  9. set -g base-index 1
  10. # 自动保存会话
  11. set -g @plugin 'tmux-plugins/tpm'
  12. set -g @plugin 'tmux-plugins/tmux-sensible'
  13. set -g @plugin 'tmux-plugins/tmux-resurrect'
  14. set -g @plugin 'tmux-plugins/tmux-continuum'
  15. set -g @continuum-save-interval '15'
  16. set -g @continuum-restore 'on'
  17. set -g @resurrect-capture-pane-contents 'on'
  18. run '~/.tmux/plugins/tpm/tpm'
  19. run-shell ~/.tmux/plugins/resurrect/resurrect.tmux
  20. ````