tmux.conf 895 B

123456789101112131415161718192021222324252627282930313233343536
  1. # === === === === === === === Minimal tmux Config === === === === === === ===
  2. #
  3. # This tmux configuration expects that tmux is used almost exclusively for
  4. # session management, as opposed to single-window multiplexing.
  5. #
  6. # === === === === === === === === === === === === === === === === === === ===
  7. # Default commands
  8. set-option -g default-shell /bin/zsh
  9. # Global settings
  10. set -g mouse off
  11. set -g escape-time 0
  12. set-option -g xterm-keys on
  13. set-option -g focus-events on
  14. # Feedback
  15. set -g visual-activity on
  16. set -g visual-bell on
  17. set -g visual-silence off
  18. setw -g monitor-activity off
  19. set -g bell-action none
  20. set -s escape-time 0
  21. set -s escape-time 0
  22. # Status Bar
  23. set -g status off
  24. # Panes
  25. set -g pane-border-status 'off'
  26. set -g pane-border-lines 'single'
  27. set -g pane-border-style 'fg=colour8'
  28. set -g pane-active-border-style 'fg=colour8'
  29. # Set path variable
  30. set-environment -g PATH "$PATH"