Guest User

Untitled

a guest
Dec 11th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. unbind C-b
  2. set-option -g prefix C-a
  3. bind-key C-a send-prefix
  4.  
  5. bind | split-window -h
  6. bind - split-window -v
  7. unbind '"'
  8. unbind %
  9.  
  10. bind -n M-Left select-pane -L
  11. bind -n M-Right select-pane -R
  12. bind -n M-Up select-pane -U
  13. bind -n M-Down select-pane -D
  14.  
  15. set -s escape-time 0
  16.  
  17. # use vim keybindings in copy mode
  18. setw -g mode-keys vi
  19.  
  20. set-window-option -g xterm-keys on
  21.  
  22. # setup 'v' to begin selection as in Vim
  23. bind-key -t vi-copy v begin-selection
  24.  
  25. #### COLOUR (Solarized light)
  26.  
  27. # default statusbar colors
  28. set-option -g status-bg white #base2
  29. set-option -g status-fg yellow #yellow
  30. set-option -g status-attr default
  31.  
  32. # default window title colors
  33. set-window-option -g window-status-fg brightyellow #base00
  34. set-window-option -g window-status-bg default
  35. #set-window-option -g window-status-attr dim
  36.  
  37. # active window title colors
  38. set-window-option -g window-status-current-fg brightred #orange
  39. set-window-option -g window-status-current-bg default
  40. #set-window-option -g window-status-current-attr bright
  41.  
  42. # pane border
  43. set-option -g pane-border-fg white #base2
  44. set-option -g pane-active-border-fg brightcyan #base1
  45.  
  46. # message text
  47. set-option -g message-bg white #base2
  48. set-option -g message-fg brightred #orange
  49.  
  50. # pane number display
  51. set-option -g display-panes-active-colour blue #blue
  52. set-option -g display-panes-colour brightred #orange
  53.  
  54. # clock
  55. set-window-option -g clock-mode-colour green #green
  56.  
  57. # bell
  58. set-window-option -g window-status-bell-style fg=white,bg=red #base2, red
Add Comment
Please, Sign In to add comment