.tmux.conf 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #fot colours
  2. #set -g default-terminal 'screen-256color'
  3. # Need for winterm >
  4. #set -g default-terminal 'tmux-256color'
  5. set-option -sa terminal-overrides ",xterm*:Tc"
  6. #set -g @plugin 'mattdavis90/base16-tmux'
  7. #set -g @colors-base16 'default-dark'
  8. #set -g default-terminal 'xterm'
  9. #set -ga terminal-overrides ",xterm-termite:Tc"
  10. #set-option -g xterm-keys on
  11. # COLOUR (base16)
  12. # default statusbar colors
  13. set-option -g status-style "fg=#bdae93,bg=#3c3836"
  14. # default window title colors
  15. set-window-option -g window-status-style "fg=#bdae93,bg=default"
  16. # active window title colors
  17. set-window-option -g window-status-current-style "fg=#fabd2f,bg=default"
  18. # pane border
  19. set-option -g pane-border-style "fg=#3c3836"
  20. set-option -g pane-active-border-style "fg=#504945"
  21. # message text
  22. set-option -g message-style "fg=#d5c4a1,bg=#3c3836"
  23. # pane number display
  24. set-option -g display-panes-active-colour "#b8bb26"
  25. set-option -g display-panes-colour "#fabd2f"
  26. # clock
  27. set-window-option -g clock-mode-colour "#b8bb26"
  28. # copy mode highligh
  29. set-window-option -g mode-style "fg=#bdae93,bg=#504945"
  30. # bell
  31. set-window-option -g window-status-bell-style "fg=#3c3836,bg=#fb4934"
  32. #mouse
  33. set -g mouse off
  34. # color status bar
  35. set -g status-style fg=colour2,bg=default
  36. # color of message bar
  37. set -g message-style fg=colour4,bold,bg=black
  38. set -g status-position bottom
  39. set -g status-interval 1
  40. set -g status-left-length 200
  41. set -g status-left '#{hostname_ssh} #(date) '
  42. # pane's
  43. set -g pane-active-border-style fg=colour56,bg=black