2019-04-24 07:24:58 +02:00
|
|
|
# switch windows alt+number
|
|
|
|
bind-key -n M-1 select-window -t 1
|
|
|
|
bind-key -n M-2 select-window -t 2
|
|
|
|
bind-key -n M-3 select-window -t 3
|
|
|
|
bind-key -n M-4 select-window -t 4
|
|
|
|
bind-key -n M-5 select-window -t 5
|
|
|
|
bind-key -n M-6 select-window -t 6
|
|
|
|
bind-key -n M-7 select-window -t 7
|
|
|
|
bind-key -n M-8 select-window -t 8
|
|
|
|
bind-key -n M-9 select-window -t 9
|
|
|
|
|
2019-07-08 11:01:46 +02:00
|
|
|
set -g mouse off
|
2019-04-30 08:22:27 +02:00
|
|
|
# https://superuser.com/a/1007721
|
|
|
|
bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'copy-mode -e; send-keys -M'"
|
|
|
|
|
2021-07-04 11:48:00 +02:00
|
|
|
# Inform tmux that alacritty supports RGB
|
|
|
|
# (because for some reason terminfo doesn't?)
|
|
|
|
set -ga terminal-overrides ',alacritty*:RGB'
|
|
|
|
|
2019-04-16 19:18:16 +02:00
|
|
|
# List of plugins
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
|
|
|
|
set -g @plugin 'jimeh/tmux-themepack'
|
|
|
|
set -g @themepack 'powerline/block/green'
|
|
|
|
|
|
|
|
set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.cache/tmuxplugins/'
|
|
|
|
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
2019-07-16 17:43:46 +02:00
|
|
|
if "test ! -d ~/.cache/tmuxplugins/tpm" \
|
|
|
|
"run 'git clone https://github.com/tmux-plugins/tpm ~/.cache/tmuxplugins/tpm && ~/.cache/tmuxplugins/tpm/bin/install_plugins'"
|
2019-04-16 19:18:16 +02:00
|
|
|
run -b '~/.cache/tmuxplugins/tpm/tpm'
|