2023-01-21 03:55:49 +02:00
|
|
|
unbind C-b
|
2023-10-06 03:34:46 +03:00
|
|
|
bind C-t send-prefix
|
2018-07-14 14:55:12 +03:00
|
|
|
bind v split-window -h
|
|
|
|
bind s split-window -v
|
2014-07-18 06:11:03 +03:00
|
|
|
bind h select-pane -L
|
|
|
|
bind j select-pane -D
|
|
|
|
bind k select-pane -U
|
|
|
|
bind l select-pane -R
|
2021-04-08 21:06:34 +03:00
|
|
|
bind t command-prompt -p "attach pane to:" "join-pane -t '%%'"
|
2017-12-18 12:59:59 +02:00
|
|
|
bind y command-prompt break-pane
|
2021-02-10 20:52:02 +02:00
|
|
|
bind N new-session
|
2023-10-06 03:34:46 +03:00
|
|
|
set -g prefix C-t
|
2018-06-28 14:53:04 +03:00
|
|
|
set -g mode-keys "vi"
|
2016-04-28 15:44:37 +03:00
|
|
|
set -g escape-time "0"
|
|
|
|
set -g history-limit "10000"
|
2023-01-21 03:55:49 +02:00
|
|
|
set -g mouse on
|
2021-03-02 23:10:38 +02:00
|
|
|
|
|
|
|
# newer options, not universally compatible
|
|
|
|
set -g update-environment "DISPLAY SSH_ASKPASS SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"
|
|
|
|
bind r display "resize" \; switch-client -T resize
|
|
|
|
bind -T resize -r h resize-pane -L 5
|
|
|
|
bind -T resize -r j resize-pane -D 5
|
|
|
|
bind -T resize -r k resize-pane -U 5
|
|
|
|
bind -T resize -r l resize-pane -R 5
|
2021-04-08 21:06:34 +03:00
|
|
|
|
|
|
|
# styling, new incompatible format
|
2021-07-14 23:18:26 +03:00
|
|
|
set -g set-titles on
|
2021-03-02 23:10:38 +02:00
|
|
|
set -g set-titles-string "[#h:#S] #W"
|
2021-07-14 23:18:26 +03:00
|
|
|
set -g automatic-rename off
|
|
|
|
set -g pane-border-status off
|
2021-07-01 22:25:56 +03:00
|
|
|
set -g pane-border-lines "heavy"
|
2021-06-25 21:58:32 +03:00
|
|
|
set -g pane-border-style "default"
|
2021-07-01 22:25:56 +03:00
|
|
|
set -g pane-active-border-style "fg=brightred"
|
2021-06-25 21:58:32 +03:00
|
|
|
set -g message-style "bg=blue,fg=white"
|
|
|
|
set -g message-command-style "bg=red,fg=white"
|
2019-05-31 13:11:16 +03:00
|
|
|
set -g status on
|
2021-07-01 22:25:56 +03:00
|
|
|
set -g status-style "fg=black,bg=white"
|
2018-07-03 15:17:16 +03:00
|
|
|
set -g status-interval 2
|
2016-09-23 16:27:41 +03:00
|
|
|
set -g status-position "bottom"
|
2016-12-06 13:31:02 +02:00
|
|
|
set -g status-justify "left"
|
2014-10-13 02:20:24 +03:00
|
|
|
set -g status-left-length "100"
|
|
|
|
set -g status-right-length "100"
|
2021-04-08 21:06:34 +03:00
|
|
|
|
|
|
|
# relevant to local only
|
2022-07-30 15:48:35 +03:00
|
|
|
set -g terminal-overrides "alacritty:Tc,kitty-xterm:Tc,xterm-256color:Tc,rxvt-unicode*:Tc"
|
2022-09-10 02:50:21 +03:00
|
|
|
set -g default-terminal "tmux-256color"
|