Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. # zsh
  2. set-option -g default-shell /bin/zsh
  3.  
  4. # color
  5. set -g default-terminal "tmux-256color"
  6.  
  7. # counting from 1
  8. set -g base-index 1
  9.  
  10. # remap prefix
  11. unbind C-b
  12. set-option -g prefix C-a
  13. bind-key C-a send-prefix
  14.  
  15. # split panes
  16. bind | split-window -h
  17. bind - split-window -v
  18. unbind '"'
  19. unbind %
  20.  
  21. # reload config
  22. bind r source-file ~/.tmux.conf
  23.  
  24. # switch panes without prefix
  25. bind -n M-Left select-pane -L
  26. bind -n M-Right select-pane -R
  27. bind -n M-Up select-pane -U
  28. bind -n M-Down select-pane -D
  29.  
  30. # mouse control
  31. set -g mouse on
  32.  
  33. # don't rename windows automatically
  34. set-option -g allow-rename off
  35.  
  36. # escape fast (especially for vim)
  37. set -sg escape-time 0
  38.  
  39. # powerline
  40. run-shell "powerline-daemon -q"
  41. source "/home/santiago/.local/lib/python3.5/site-packages/powerline/bindings/tmux/powerline.conf"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement