Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. # Plugins
  2. set -g @plugin 'tmux-plugins/tpm'
  3. set -g @plugin 'tmux-plugins/tmux-resurrect'
  4. set -g @plugin 'tmux-plugins/tmux-continuum'
  5.  
  6. # Rebind prefix key
  7. unbind C-b
  8. set-option -g prefix C-a
  9. bind-key C-a send-prefix
  10.  
  11. # Reload config file
  12. bind r source-file ~/.tmux.conf \; display "Config Reloaded!"
  13.  
  14. # Open new window and panes in same directory
  15. bind '"' split-window -c "#{pane_current_path}"
  16. bind % split-window -h -c "#{pane_current_path}"
  17. bind c new-window -c "#{pane_current_path}"
  18.  
  19. # Pane nanigation
  20. bind h select-pane -L
  21. bind j select-pane -D
  22. bind k select-pane -U
  23. bind l select-pane -R
  24.  
  25. # Theme
  26. set -g status-bg colour240
  27. set -g status-fg white
  28.  
  29. # Continuum
  30. set -g @continuum-restore 'on'
  31. set -g @continuum-save-interval '15'
  32.  
  33. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  34. run '~/.tmux/plugins/tpm/tpm'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement