/ dot_tmux.conf
dot_tmux.conf
 1  # seems needed to avoid stray characters when connecting.
 2  set -g escape-time 100
 3  
 4  # Styling
 5  set-option -g status-style "fg=white bg=darkgreen"
 6  set-option -g window-status-style "fg=brightgreen"
 7  set-option -g window-status-current-style "fg=white,bold"
 8  
 9  # Plugins
10  set -g @plugin 'tmux-plugins/tpm'
11  set -g @plugin 'tmux-plugins/tmux-resurrect'
12  
13  # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
14  run '/usr/share/tmux-plugin-manager/tpm'