My dot files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1016B

  1. #basic functionality
  2. #reload
  3. bind r source-file ~/.config/.tmux.conf
  4. #vim-like binds:
  5. bind h select-pane -L
  6. bind j select-pane -D
  7. bind k select-pane -U
  8. bind l select-pane -R
  9. #change indexing to start from 1
  10. set -g base-index 1
  11. setw -g pane-base-index 1
  12. #Custom colors
  13. #modes
  14. setw -g clock-mode-colour colour5
  15. setw -g mode-style 'fg=colour190 bg=colour18'
  16. #panes
  17. set -g pane-border-style 'bg=default'
  18. set -ag pane-active-border-style 'fg=colour203 bg=colour203'
  19. #Bar
  20. set -g status-position bottom
  21. set -g status-justify left
  22. set -g status-style 'bg=colour0 fg=colour0 dim'
  23. set -g status-left ''
  24. set -g status-right '#[fg=colour203,bg=colour0]#(whoami)@#(hostname)#[fg=colour255,bg=colour0] %H:%M'
  25. set -g status-left-length 20
  26. set -g status-right-length 50
  27. setw -g window-status-current-style 'fg=colour1 bg=colour8 bold'
  28. setw -g window-status-current-format ' #[fg=colour255]#W '
  29. setw -g window-status-bell-style 'fg=colour255 bg=colour1 bold'
  30. #messages
  31. set -g message-style 'fg=colour190 bg=colour16 bold'