Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. set-window-option -g mode-keys emacs
  2.  
  3. set -g mouse on
  4.  
  5. set -g default-shell /usr/local/bin/zsh
  6.  
  7. bind-key m run pane-maximize
  8. bind-key e run tmux-editbuf
  9.  
  10. bind-key -rn M-Up resize-pane -U 5
  11. bind-key -rn M-Down resize-pane -D 5
  12. bind-key -rn M-Left resize-pane -L 5
  13. bind-key -rn M-Right resize-pane -R 5
  14.  
  15. bind-key w choose-window
  16.  
  17. setw -g window-status-format "[#I:#T]"
  18. setw -g window-status-current-format "[#I:#T]"
  19.  
  20. # default statusbar colors
  21. set-option -g status-style bg="colour231","default",fg="colour130" #base2, yellow
  22.  
  23. # default window title colors
  24. setw -g window-status-style fg="colour180","dim",bg="default"
  25.  
  26. # active window title colors
  27. setw -g window-status-current-style fg="colour196","bright",bg="default"
  28.  
  29. # pane border
  30. set-option -g pane-border-style fg="colour231"
  31. set-option -g pane-active-border-style fg="colour051" #base1
  32.  
  33. # message text
  34. set-option -g message-style bg="colour231",fg="colour196"
  35.  
  36. # pane number display
  37. set-option -g display-panes-active-colour colour20 #blue
  38. set-option -g display-panes-colour colour196 #orange
  39.  
  40. # clock
  41. set-window-option -g clock-mode-colour colour40 #green
  42.  
  43. # bell
  44. setw -g window-status-bell-style bg="colour1","reverse",fg="colour4"
  45.  
  46. set -g status-right '#[fg=red] %y/%m/%d(%a) %H:%M:%S '
  47.  
  48. set-option -g default-command "reattach-to-user-namespace -l $SHELL"
  49. bind-key C-c run "/usr/local/bin/tmux save-buffer - | /usr/local/bin/reattach-to-user-namespace pbcopy"
  50. bind-key C-v run "/usr/local/bin/reattach-to-user-namespace pbpaste | /usr/local/bin/tmux load-buffer - && tmux paste-buffer"
  51. ,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement