Advertisement
kjetilcodes

.tmux.conf

Feb 6th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.74 KB | None | 0 0
  1. # Set <ESC> delay to 0
  2. set -s escape-time 0
  3. # remap prefix from 'C-b' to 'C-a'
  4. unbind C-b
  5. set-option -g prefix C-a
  6. bind-key C-a send-prefix
  7.  
  8. # split panes using | and -
  9. bind | split-window -h
  10. bind - split-window -v
  11. unbind '"'
  12. unbind %
  13.  
  14. # reload config file (change file location to your the tmux.conf you want to use)
  15. bind r source-file ~/.tmux.conf
  16.  
  17. # switch panes using Alt-arrow without prefix
  18. bind -n C-h select-pane -L
  19. bind -n C-l select-pane -R
  20. bind -n C-k select-pane -U
  21. bind -n C-j select-pane -D
  22.  
  23. # don't rename windows automatically
  24. set-option -g allow-rename off
  25.  
  26. # Colors
  27.  
  28. # panes
  29. set -g pane-border-bg colour0
  30. set -g pane-border-fg colour19
  31. set -g pane-active-border-bg colour0
  32. set -g pane-active-border-fg colour9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement