Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. set -g default-terminal "xterm"
  2. set -g prefix C-s
  3. unbind C-b
  4. set -s escape-time 1
  5. set -g base-index 1
  6. setw -g pane-base-index 1
  7. bind r source-file ~/.tmux.conf \; display "Reloaded!"
  8. bind C-s send-prefix
  9. bind | split-window -h
  10. bind - split-window -v
  11. bind h select-pane -L
  12. bind j select-pane -D
  13. bind k select-pane -U
  14. bind l select-pane -R
  15. bind -r C-h select-window -t :-
  16. bind -r C-l select-window -t :+
  17. bind -r H resize-pane -L 5
  18. bind -r J resize-pane -D 5
  19. bind -r K resize-pane -U 5
  20. bind -r L resize-pane -R 6
  21. set -g default-terminal "screen"
  22. set-option -g status-bg colour235 #base02
  23. set-option -g status-fg colour136 #yellow
  24. set-option -g status-attr default
  25. set-window-option -g window-status-fg colour244 #base0
  26. set-window-option -g window-status-bg default
  27. set-window-option -g window-status-current-fg colour166 #orange
  28. set-window-option -g window-status-current-bg default
  29. set-option -g pane-border-fg colour235 #base02
  30. set-option -g pane-active-border-fg colour240 #base01
  31. set-option -g message-bg colour235 #base02
  32. set-option -g message-fg colour166 #orange
  33. set-option -g display-panes-active-colour colour33 #blue
  34. set-option -g display-panes-colour colour166 #orange
  35. set-window-option -g clock-mode-colour colour64 #green
  36. set -g status-left-length 40
  37. #set -g status-left "#[fg=green]^S #{?client_prefix,#[reverse]<Prefix>#[noreverse] ,}[#S] #[fg=yellow]Win:#I #[fg=cyan]Pane:#P"
  38. set -g status-left "#[fg=green]^S #{?client_prefix,#[reverse]<Prefix>#[noreverse] ,}[#S] #[fg=yellow]Win:#I #[fg=cyan]Pane:#P"
  39. set -g status-right "#[fg=cyan]#(whoami)@#h %d %b %R"
  40. set -g status-justify centre
  41. set -g monitor-activity on
  42. set -g visual-activity on
  43. setw -g mode-keys vi
  44. set-option -g update-environment -r
  45. set-option -g clock-mode-style 24
  46. set -g renumber-windows on
  47. set -g history-limit 9000
  48. set-option -g history-limit 9000
  49.  
  50. # y to Yank to clipboard instead of Enter
  51. #bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
  52. # Keybind preference
  53. set-option -g status-keys vi
  54. set-window-option -g mode-keys vi
  55. #bind -n WheelUpPane copy-mode
  56. #set -g mouse on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement