1
0
Fork 0
vdotfiles/cli/.tmux.conf

48 lines
1.6 KiB
Text
Raw Normal View History

unbind C-b
bind C-g send-prefix
2018-07-14 14:55:12 +03:00
bind v split-window -h
bind s split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind t command-prompt -p "attach pane to:" "join-pane -t '%%'"
bind y command-prompt break-pane
bind N new-session
set -g prefix C-g
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"
set -g mouse on
# 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
# styling, new incompatible format
2021-07-14 23:18:26 +03:00
set -g set-titles on
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"
set -g pane-border-style "default"
2021-07-01 22:25:56 +03:00
set -g pane-active-border-style "fg=brightred"
set -g message-style "bg=blue,fg=white"
set -g message-command-style "bg=red,fg=white"
set -g status on
2021-07-01 22:25:56 +03:00
set -g status-style "fg=black,bg=white"
2023-06-16 22:21:05 +03:00
set -g status-format[0] "#[fg=brightred,bg=black,italics] #h[#S] #[default]\ue0bc #{W: #I:#W ,#[reverse] #I:#W #[noreverse]} #[align=right]\ue0be#[reverse] %a %e %k:%M "
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"
# relevant to local only
set -g terminal-overrides "alacritty:Tc,kitty-xterm:Tc,xterm-256color:Tc,rxvt-unicode*:Tc"
set -g default-terminal "tmux-256color"