Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. # Remove the default keybinding
  2. unbind-key C-b
  3.  
  4. # Set a new keybinding to C-/. In terminals C-/ is the same as C-_
  5. # however in tmux we can't bind to C-/
  6. set-option -g prefix C-_
  7.  
  8. set-window-option -g mode-keys vi
  9.  
  10. bind-key 'c' new-window -c "#{pane_current_path}"
  11.  
  12. set-option -g pane-active-border-fg "colour237"
  13. set-option -g status-right "#[fg=colour3]%a %v %l:%M %p #[fg=colour240]| #[fg=colour5]#{battery_percentage}โ€‡"
  14. set-option -g status-right-length "40"
  15. set-option -g message-bg "colour235"
  16. set-option -g set-titles-string "tmux:#I #W"
  17. set-option -g status-bg default
  18. set-option -g status-left "[#[fg=colour2]#S#[fg=colour240]]โ€‡#[fg=colour2]โ˜… "
  19. set-option -g message-fg "red"
  20. set-option -g status-position "top"
  21. set-option -g status-fg "colour240"
  22. set-option -g pane-border-fg "colour237"
  23. set-window-option -g window-status-current-fg "colour15"
  24. set-window-option -g window-status-current-format "#[fg=colour246]#[bg=NONE] #I #[fg=colour2]#W#F #[fg=colour246]"
  25. set-window-option -g window-status-format " #I #W "
  26.  
  27. # Specify plugins
  28. set-option -g @plugin 'tmux-plugins/tpm'
  29. set-option -g @plugin 'tmux-plugins/tmux-battery-osx'
  30. set-option -g @plugin 'tmux-plugins/tmux-logging'
  31. set-option -g @plugin 'tmux-plugins/tmux-pain-control'
  32. set-option -g @plugin 'tmux-plugins/tmux-resurrect'
  33. set-option -g @plugin 'tmux-plugins/tmux-sensible'
  34. set-option -g @plugin 'tmux-plugins/tmux-sessionist'
  35. set-option -g @plugin 'tmux-plugins/tmux-yank'
  36. set-option -g @plugin 'Morantron/tmux-fingers'
  37.  
  38. # Initialize tmux plugin manager
  39. run '~/.tmux/plugins/tpm/tpm'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement