tmux.conf 457 B

12345678910111213141516171819202122
  1. # Setting prefix to C-a
  2. set -g prefix C-a
  3. bind C-a send-prefix
  4. bind-key a send-prefix
  5. unbind-key C-o
  6. # Setting escape delay to 0 (for vim)
  7. set -s escape-time 0
  8. # Setting window indexing to start from 1
  9. set -g base-index 1
  10. setw -g pane-base-index 1
  11. set -g default-terminal "screen-256color"
  12. setw -g automatic-rename on
  13. set -g set-titles on
  14. bind-key - split-window -v
  15. bind-key \\ split-window -h
  16. bind-key o command-prompt -p index "select-pane -t '%%'"