Guest User

Untitled

a guest
Mar 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. # General config# General config# General config
  2. set -g default-terminal "screen-256color"
  3. set-option -g default-shell $SHELL
  4. set -g default-command /usr/local/bin/zsh
  5. set-window-option -g mode-keys vi
  6. # remap prefix to Control + a
  7. # set -g prefix C-a
  8. # unbind C-b
  9. # bind C-a send-prefix
  10. # Remap split panes
  11. bind | split-window -h
  12. bind - split-window -v
  13. unbind '"'
  14. unbind %
  15. # To clear current buffer
  16. bind -n C-k send-keys -R \; clear-history
  17. # bind -n C-k clear-history
  18. # reload config file (change file location to your the tmux.conf you want to use)
  19. bind r source-file ~/.tmux.conf
  20. # Enable mouse control (clickable windows, panes, resizable panes)
  21. set -g mouse on
  22. # start window numbering at 1 for easier switching
  23. set -g base-index 1
  24. # History
  25. set -g history-limit 10000
  26. # Rather than constraining window size to the maximum size of any client
  27. # # connected to the *session*, constrain window size to the maximum size of any
  28. # # client connected to *that window*. Much more reasonable.
  29. setw -g aggressive-resize off
Add Comment
Please, Sign In to add comment