Files
dotfiles/dot_tmux.conf
tqcq 365d01d2cf
All checks were successful
Security Check / gitleaks (push) Successful in 6s
feat: tmux show Month and second
2026-03-16 09:45:24 +00:00

32 lines
727 B
Plaintext

set -g prefix C-q
unbind C-b
bind C-q send-prefix
bind h select-pane -L
bind j select-pane -D
bind l select-pane -R
bind k select-pane -U
bind s split-window -v
bind v split-window -h
bind -T copy-mode-vi v send-keys -X begin-selection
bind -T copy-mode-vi y send-keys -X copy-selection
bind -T copy-mode-vi C-f send-keys -X page-down
bind -T copy-mode-vi C-b send-keys -X page-up
bind -T copy-mode-vi / command-prompt -p "Search:" "send -X search-forward \"%%%\""
set -g default-terminal "screen-256color"
setw -g automatic-rename on
set-option -g escape-time 0
set -g status-position top
set -g mode-keys vi
set -g history-limit 100000
set -g mouse off
set -g status-right "%m-%d %H:%M:%S "
set -g status-interval 1