Advertisement
Guest User

Untitled

a guest
May 10th, 2024
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. # easy reload
  2. unbind r
  3. bind r source-file ~/.tmux.conf
  4.  
  5. # set up vim navigation commands
  6. bind h select-pane -L
  7. bind j select-pane -D
  8. bind k select-pane -U
  9. bind l select-pane -R
  10.  
  11. bind - resize-pane -D 5
  12.  
  13. # Change split commands for windows
  14. bind H split-window -h
  15. bind V split-window -v
  16.  
  17. bind = select-layout even-horizontal
  18.  
  19. # Change prefix
  20. set -g prefix C-a
  21.  
  22. set-window-option -g mode-keys vi
  23. set-option -g renumber-windows on
  24. set -g base-index 1
  25. set -g pane-base-index 1
  26.  
  27. set -g @catppuccin_status_modules_right "date_time battery directory session"
  28.  
  29. set -g status-bg black
  30. set -g status-fg blue
  31.  
  32. set -g window-status-current-style fg=red,bg=black
  33. set -g status-interval 1
  34. set -g status-left-length 100
  35. set -g status-left ""
  36.  
  37. set -g @plugin 'tmux-plugins/tpm'
  38.  
  39. set -g @plugin 'tmux-plugins/tmux-resurrect'
  40. set -g @plugin 'tmux-plugins/tmux-continuum'
  41. set -g @plugin 'sainnhe/tmux-fzf'
  42. set -g @plugin 'christoomey/vim-tmux-navigator'
  43. set -g @plugin 'catppuccin/tmux'
  44. set -g @plugin 'tmux-plugins/tmux-battery'
  45.  
  46. set -g status-position top
  47.  
  48. run -b '~/.tmux/plugins/tpm/tpm'
  49.  
  50. set-option -g set-titles on
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement