iax

.tmux.conf

iax
Jan 3rd, 2022 (edited)
543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. # If there isn't a session to attach to, create a new one:
  2. new-session -n $HOST
  3.  
  4. set -g default-terminal "screen-256color"
  5.  
  6. setw -g mode-mouse on
  7. set -g mouse-select-pane on
  8.  
  9. # remap prefix from 'C-b' to 'C-a'
  10. unbind C-b
  11. set -g prefix C-a
  12. bind C-a send-prefix
  13.  
  14. # split panes using | and -
  15. bind | split-window -h
  16. bind - split-window -v
  17. unbind '"'
  18. unbind %
  19.  
Add Comment
Please, Sign In to add comment