My configuration files for Debian/Ubuntu applications
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. bind r source-file ~/.config/tmux/tmux.conf
  2. set-option -g prefix `
  3. set-option -g mode-keys vi
  4. bind-key ` send-prefix
  5. bind v split-window -h
  6. bind h split-window -v
  7. bind -n M-h select-pane -L
  8. bind -n M-l select-pane -R
  9. bind -n M-k select-pane -U
  10. bind -n M-j select-pane -D
  11. bind -n M-o next-window
  12. bind -n M-i previous-window
  13. bind -n M-] swap-window -t +1
  14. bind -n M-[ swap-window -t -1
  15. set -g mouse on
  16. set -g mouse on
  17. set -g mouse on
  18. set -g default-terminal "tmux-256color"
  19. bind-key -T copy-mode-vi v send-keys -X begin-selection
  20. bind-key -T copy-mode-vi y send-keys -X copy-selection
  21. bind-key -T copy-mode-vi r send-keys -X rectangle-toggle
  22. bind-key -T copy-mode-vi r send-keys -X rectangle-toggle
  23. unbind '"'
  24. unbind %
  25. unbind C-b
  26. unbind p
  27. unbind n
  28. ######################
  29. ### DESIGN CHANGES ###
  30. ######################
  31. # {{{
  32. # loud or quiet?
  33. set -g visual-activity off
  34. set -g visual-bell off
  35. set -g visual-silence off
  36. setw -g monitor-activity off
  37. set -g bell-action none
  38. # modes
  39. setw -g clock-mode-colour colour5
  40. setw -g mode-style 'fg=colour1 bg=colour18 bold'
  41. # panes
  42. set -g pane-border-style 'fg=colour19 bg=colour0'
  43. set -g pane-active-border-style 'bg=colour0 fg=colour9'
  44. # statusbar
  45. set -g status-position bottom
  46. set -g status-justify left
  47. set -g status-style 'bg=colour18 fg=colour137 dim'
  48. set -g status-left ''
  49. set -g status-right '#[fg=colour233,bg=colour19] %d/%m #[fg=colour233,bg=colour8] %H:%M:%S '
  50. set -g status-right-length 50
  51. set -g status-left-length 20
  52. setw -g window-status-current-style 'fg=colour1 bg=colour19 bold'
  53. setw -g window-status-current-format ' #I#[fg=colour249]:#[fg=colour255]#W#[fg=colour249]#F '
  54. setw -g window-status-style 'fg=colour9 bg=colour18'
  55. setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F '
  56. setw -g window-status-bell-style 'fg=colour255 bg=colour1 bold'
  57. # messages
  58. set -g message-style 'fg=colour232 bg=colour16 bold'
  59. # }}}
  60. #Plugins
  61. set -g @plugin 'tmux-plugins/tpm'
  62. set -g @plugin 'mattdavis90/base16-tmux'
  63. set -g @colors-base16 'ocean'
  64. #Final
  65. run -b '~/.config/tmux/plugins/tpm/tpm'