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.
 
 
 
 
 
 

38 lines
1.0 KiB

  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. # try to set title of terminal tmux is running on
  17. # set -g set-titles off
  18. set -g display-panes-time 5000
  19. set -g window-status-current-format "#I|#W:#T#F"
  20. set -g window-status-format "#I|#W:#T#F"
  21. # set window name automatically from command currently running
  22. set -g automatic-rename on
  23. # disable updating status-left and status-right
  24. set -g status-interval 0
  25. set -g status-keys emacs
  26. set -g message-bg white
  27. set -g message-fg black
  28. setw -g window-status-current-bg white
  29. setw -g window-status-current-fg black
  30. setw -g window-status-attr bold