Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. setw -g mode-keys emacs
  2. set -g mouse on
  3. bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'copy-mode -e; send-keys -M'"
  4.  
  5. set-window-option -g window-status-current-format '#[fg=white,bold] *#{window_index} #[fg=green]#{pane_current_command} #[fg=blue]#(echo "#{pane_current_path}" | rev | cut -d'/' -f-3 | rev) #[fg=white]|'
  6. set-window-option -g window-status-format '#[fg=white]#{window_index} #[fg=green]#{pane_current_command} #[fg=blue]#(echo "#{pane_current_path}" | rev | cut -d'/' -f-3 | rev) #[fg=white]|'
  7.  
  8. bind j select-pane -D
  9. bind k select-pane -U
  10. bind h select-pane -L
  11. bind l select-pane -R
  12.  
  13. bind | split-window -h
  14. bind - split-window -v
  15.  
  16. bind -r J resize-pane -D 5
  17. bind -r K resize-pane -U 5
  18. bind -r H resize-pane -L 5
  19. bind -r L resize-pane -R 5
  20.  
  21. set -g pane-border-fg white
  22. set -g pane-active-border-fg cyan
  23. set -g pane-active-border-bg cyan
  24.  
  25. set-option -g status-left-fg colour74
  26. set-option -g status-style fg=colour136,bg=colour234
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement