来源于:https://github.com/gpakosz/.tmux
精简了下。
# cat << ►_◄ > /dev/null # (‑●‑●)> released under the WTFPL v2 license, by Gregory Pakosz (@gpakosz) # -- general ------------------------------------------------------------------- set -g default-terminal "screen-256color" # colors! setw -g mode-keys vi set -s escape-time 0 # fastest command sequences set -sg repeat-time 600 # increase repeat timeout set -s quiet on # disable various messages set -g status-utf8 on set -g prefix2 C-a # GNU-Screen compatible prefix bind C-a send-prefix -2 set -g history-limit 5000 # boost history # reload configuration bind r source-file ~/.tmux.conf \; display '~/.tmux.conf sourced' # -- display ------------------------------------------------------------------- set -g base-index 1 # start windows numbering at 1 setw -g pane-base-index 1 # make pane numbering consistent with windows setw -g automatic-rename on # rename window to reflect current program # renumber windows when a window is closed set -g renumber-windows on set -g set-titles on # set terminal title set -g set-titles-string '#h ❐ #S ● #I #W' set -g display-panes-time 800 # slightly longer pane indicators display time set -g display-time 1000 # slightly longer status messages display time set -g status-interval 10 # redraw status line every 10 seconds # 24 hour clock setw -g clock-mode-style 24 # clear both screen and history bind -n C-l send-keys C-l \; run 'tmux clear-history' # activity set -g monitor-activity on set -g visual-activity off # -- navigation ---------------------------------------------------------------- # find session bind C-f command-prompt -p find-session 'switch-client -t %%' # pane navigation bind -r h select-pane -L # move left bind -r j select-pane -D # move down bind -r k select-pane -U # move up bind -r l select-pane -R # move right bind > swap-pane -D # swap current pane with the next one bind < swap-pane -U # swap current pane with the previous one # key bindings for horizontal and vertical panes unbind % bind | split-window -h # 使用|竖屏,方便分屏 unbind '"' bind - split-window -v # 使用-横屏,方便分屏 # maximize current pane # pane resizing bind -r H resize-pane -L 2 bind -r J resize-pane -D 2 bind -r K resize-pane -U 2 bind -r L resize-pane -R 2 # window navigation unbind n unbind p bind -r C-h previous-window # select previous window bind -r C-l next-window # select next window bind Tab last-window # move to last active window # toggle mouse setw -g mode-mouse on set -g mouse-select-pane on set -g mouse-resize-pane on set -g mouse-select-window on # -- list choice --------------------------------------------------------------- bind -t vi-choice h tree-collapse bind -t vi-choice l tree-expand run -b 'tmux bind -t vi-choice K start-of-list 2> /dev/null' run -b 'tmux bind -t vi-choice J end-of-list 2> /dev/null' bind -t vi-choice H tree-collapse-all bind -t vi-choice L tree-expand-all bind -t vi-choice Escape cancel # -- edit mode ----------------------------------------------------------------- # the following vi-copy bindings match my vim settings # see https://github.com/gpakosz/.vim.git bind -ct vi-edit H start-of-line bind -ct vi-edit L end-of-line bind -ct vi-edit q cancel bind -ct vi-edit Escape cancel # -- copy mode ----------------------------------------------------------------- bind Enter copy-mode # enter copy mode bind -t vi-copy v begin-selection bind -t vi-copy y copy-selection unbind p bind p pasteb setw -g mode-keys vi # Vi风格选择文本 # zoom pane <-> window #http://tmux.svn.sourceforge.net/viewvc/tmux/trunk/examples/tmux-zoom.sh bind ^z run "tmux-zoom"