Advertisement
eaposztrof

tmux source-file ~/.tmux.conf

Mar 3rd, 2021
1,838
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.26 KB | None | 0 0
  1. #[fg=colour248, bg=colour239]"
  2.  
  3. set-window-option -g window-status-format " #W "
  4. set-window-option -g window-status-current-format " #W "
  5. set-window-option -g status-bg cyan
  6. set-window-option -g window-status-current-bg black
  7. set-window-option -g window-status-current-fg brightyellow
  8. set-window-option -g window-status-fg brightwhite
  9. set-window-option -g window-status-bg cyan
  10.  
  11. set-window-option -g status-right " %H:%M "
  12. set-window-option -g status-right-fg black
  13. set-window-option -g status-right-bg brightwhite
  14.  
  15. set-option -ga update-environment 'a'
  16.  
  17. # Plugins
  18. run-shell ~/.tmux/plugins/tmux-resurrect/resurrect.tmux
  19.  
  20. # List of plugins
  21. set -g @plugin '~/.tmux/plugins/tpm/'
  22. # set -g @plugin 'tmux-plugins/tmux-sensible'
  23.  
  24. # Other examples:
  25. # set -g @plugin 'github_username/plugin_name'
  26. # set -g @plugin 'git@github.com/user/plugin'
  27. # set -g @plugin 'git@bitbucket.com/user/plugin'
  28.  
  29. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  30. run '~/.tmux/plugins/tpm/tpm'
  31.  
  32. set -g @plugin '~/.tmux/plugins/tmux-resurrect'
  33. set -g @resurrect-capture-pane-contents 'on'
  34. set -g @resurrect-save-shell-history 'on'
  35.  
  36. set -g @plugin '~/.tmux/plugins/tmux-continuum'
  37. set -g @continuum-save-interval '15'
  38. set -g @continuum-restore 'on'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement