You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
675 B

  1. # tmux.conf
  2. if "test -f $HOME/.tmux.conf.local" "source-file $HOME/.tmux.conf.local" \
  3. "display-message \"$HOME/.tmux.conf.local not found\""
  4. unbind C-b
  5. set -g prefix C-z
  6. bind C-z send-prefix
  7. bind c command-prompt "new-window '%%'"
  8. bind C-r source-file ~/.tmux.conf \; display-message "Reloaded config !!"
  9. set -g base-index 1
  10. set -g pane-base-index 1
  11. set -g renumber-windows on
  12. setw -g mode-keys vi
  13. setw -g mode-mouse off
  14. #set -g default-command /bin/bash
  15. #set -g default-path "$HOME"
  16. set -g set-titles on
  17. set -g display-panes-time 5000
  18. set -g message-bg white
  19. set -g message-fg black
  20. setw -g window-status-current-bg white
  21. setw -g window-status-current-fg black