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.
 
 
 
 
 
 

40 regels
1.1 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-c command-prompt "new-window '%%'"
  8. bind C-r source-file ~/.tmux.conf \; display-message "Reloaded config !"
  9. bind C-s command-prompt -p "prompt name:" \
  10. "new-session -t '%1'; switch-client -t '%1'"
  11. set -g base-index 1
  12. set -g pane-base-index 1
  13. set -g renumber-windows on
  14. setw -g mode-keys vi
  15. setw -g mode-mouse off
  16. #set -g default-command /bin/bash
  17. #set -g default-path "$HOME"
  18. # try to set title of terminal tmux is running on
  19. # set -g set-titles off
  20. set -g display-panes-time 5000
  21. set -g window-status-current-format "#I|#W:#T#F"
  22. set -g window-status-format "#I|#W:#T#F"
  23. # set window name automatically from command currently running
  24. set -g automatic-rename on
  25. # disable updating status-left and status-right
  26. set -g status-interval 0
  27. set -g status-keys emacs
  28. set -g message-bg white
  29. set -g message-fg black
  30. setw -g window-status-current-bg white
  31. setw -g window-status-current-fg black
  32. setw -g window-status-attr bold