tmux.conf 428 B

1234567891011121314
  1. set -g default-terminal "screen-256color"
  2. set -g status-right '#(echo $USER)@#H #(uptime | cut -d "," -f 1)'
  3. set -g status-keys vi
  4. setw -g mode-keys vi
  5. set -g history-limit 1000
  6. set -g prefix C-a
  7. unbind C-b
  8. bind C-a last-window
  9. bind M setw monitor-activity on
  10. bind-key -n F1 choose-window
  11. bind-key -n F11 previous-window
  12. bind-key -n F12 next-window
  13. bind-key -n C-S-Left swap-window -t -1
  14. bind-key -n C-S-Right swap-window -t +1