mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
179 lines
6.2 KiB
179 lines
6.2 KiB
6 years ago
|
# https://github.com/gpakosz/.tmux
|
||
7 years ago
|
# ---- general ----------------------------------------------------
|
||
|
set -g default-terminal "screen-256color" # colors!
|
||
|
setw -g xterm-keys on
|
||
|
set -s escape-time 10 # faster command sequences
|
||
|
set -sg repeat-time 600 # increase repeat timeout
|
||
|
set -s focus-events on
|
||
|
|
||
7 years ago
|
#unbind ^b # unbind defaul prefix Control+b
|
||
|
#set -g prefix 'C-\' # bind new prefix Control+a
|
||
|
#bind-key 'C-\' send-prefix
|
||
6 years ago
|
# set -g prefix2 C-a
|
||
|
# bind C-a send-prefix -2
|
||
7 years ago
|
|
||
5 years ago
|
#set -q -g status-utf8 on
|
||
7 years ago
|
setw -q -g utf8 on
|
||
|
|
||
6 years ago
|
# edit configuration
|
||
|
bind e new-window -n '~/.tmux.conf.local' "sh -c '\${EDITOR:-vim} ~/.tmux.conf.local && tmux source ~/.tmux.conf && tmux display \"~/.tmux.conf sourced\"'"
|
||
|
|
||
7 years ago
|
bind r source-file ~/.tmux.conf \; display-message "tmux config reloaded" # create new short cut to reload tmux.conf
|
||
|
|
||
7 years ago
|
set -g history-limit 5000 # boost history
|
||
|
|
||
|
# ---- display ------------------------------------------------------------------------
|
||
|
# Enable mouse mode (tmux 2.1 and above)
|
||
|
set -g mouse on
|
||
7 years ago
|
# setw -g mode-mouse on
|
||
7 years ago
|
|
||
7 years ago
|
# 窗口号和窗口分割号都以1开始(默认从0开始)
|
||
7 years ago
|
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
|
||
|
set -g renumber-windows on # renumber windows when a window is closed
|
||
|
|
||
7 years ago
|
set -g set-titles on
|
||
6 years ago
|
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
|
||
7 years ago
|
|
||
7 years ago
|
# 监视窗口信息,如有内容变动,进行提示
|
||
7 years ago
|
set -g monitor-activity on
|
||
|
set -g visual-activity off
|
||
|
|
||
7 years ago
|
# 调节窗口大小快捷键
|
||
7 years ago
|
# bind -r 表示可以重复
|
||
5 years ago
|
# 注意这里时大写,需要按住 Shift + HJKL
|
||
7 years ago
|
bind -r H resize-pane -L 5
|
||
|
bind -r J resize-pane -D 5
|
||
|
bind -r K resize-pane -U 5
|
||
|
bind -r L resize-pane -R 5
|
||
|
|
||
7 years ago
|
# move between panels using hjkl like in vim up
|
||
|
#bind-key k select-pane -U
|
||
|
#down
|
||
|
#bind-key j select-pane -D
|
||
|
#left
|
||
|
#bind-key h select-pane -L
|
||
|
#right
|
||
|
#bind-key l select-pane -R
|
||
|
|
||
|
# switch panes using Alt-arrow without prefix
|
||
|
# bind -n 表示绑定到全局,不需要 <prefix>
|
||
|
# bind -r 表示可以重复
|
||
|
# bind -n M-Left select-pane -L
|
||
|
# bind -n M-Right select-pane -R
|
||
|
# bind -n M-Up select-pane -U
|
||
|
# bind -n M-Down select-pane -D
|
||
|
|
||
|
# split panes using | and -
|
||
7 years ago
|
bind \ split-window -h -c "#{pane_current_path}"
|
||
7 years ago
|
bind | split-window -h -c "#{pane_current_path}"
|
||
|
bind - split-window -v -c "#{pane_current_path}"
|
||
7 years ago
|
bind _ split-window -v -c "#{pane_current_path}"
|
||
7 years ago
|
unbind '"'
|
||
|
unbind %
|
||
|
|
||
7 years ago
|
# 快速调整窗口到全屏
|
||
|
unbind Up
|
||
|
bind Up new-window -d -n tmp \; swap-pane -s tmp.1 \; select-window -t tmp
|
||
|
unbind Down
|
||
|
bind Down last-window \; swap-pane -s tmp. \; kill-window -t tmp
|
||
|
|
||
7 years ago
|
# in version 2.3 and below https://github.com/tmux/tmux/commit/76d6d3641f271be1756e41494960d96714e7ee58
|
||
|
setw -g mode-keys vi
|
||
5 years ago
|
bind-key -T copy-mode-vi 'v' send -X begin-selection # Begin selection in copy mode.
|
||
|
bind-key -T copy-mode-vi 'C-v' send -X rectangle-toggle # Begin selection in copy mode.
|
||
|
bind-key -T copy-mode-vi 'y' send -X copy-selection # Yank selection in copy mode.
|
||
7 years ago
|
# https://superuser.com/a/693990/298782
|
||
7 years ago
|
|
||
|
# Smart pane switching with awareness of Vim splits.
|
||
|
# See: https://github.com/christoomey/vim-tmux-navigator
|
||
5 years ago
|
# is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
|
||
|
# | grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|n?vim?x?)(diff)?$'"
|
||
|
# bind-key -n C-h if-shell "$is_vim" "send-keys C-h" "select-pane -L"
|
||
|
# bind-key -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D"
|
||
|
# bind-key -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U"
|
||
|
# bind-key -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R"
|
||
7 years ago
|
# bind-key -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l"
|
||
5 years ago
|
# bind-key -T copy-mode-vi C-h select-pane -L
|
||
|
# bind-key -T copy-mode-vi C-j select-pane -D
|
||
|
# bind-key -T copy-mode-vi C-k select-pane -U
|
||
|
# bind-key -T copy-mode-vi C-l select-pane -R
|
||
7 years ago
|
# bind-key -T copy-mode-vi C-\ select-pane -l
|
||
|
|
||
5 years ago
|
bind C-l send-keys 'C-l'
|
||
7 years ago
|
|
||
|
# -------------------------------- color begin --------------------------------
|
||
|
|
||
|
# fiddle with colors of status bar
|
||
|
set -g status-fg white
|
||
|
set -g status-bg colour234 # 底部状态背景
|
||
|
|
||
7 years ago
|
set -g status-interval 10 # redraw status line every 10 seconds
|
||
|
# 对齐方式
|
||
|
set-option -g status-justify centre
|
||
|
|
||
7 years ago
|
# fiddle with colors of inactive windows
|
||
|
|
||
|
# change color of active window
|
||
|
# setw -g window-status-current-fg white
|
||
|
# setw -g window-status-current-bg colour234
|
||
|
# setw -g window-status-current-attr bright
|
||
|
|
||
|
# set color of regular and active panes
|
||
|
# set -g pane-border-fg colour238
|
||
|
# set -g pane-border-bg default
|
||
|
# set -g pane-active-border-fg green
|
||
|
# set -g pane-active-border-bg default
|
||
|
|
||
|
# set color of command line
|
||
5 years ago
|
#set -g message-fg white
|
||
|
#set -g message-bg colour22
|
||
|
#set -g message-attr bright
|
||
7 years ago
|
|
||
7 years ago
|
set -g status-right '#[fg=colour233,bg=colour241,bold] %d/%m #[fg=colour233,bg=colour245,bold] %H:%M:%S '
|
||
|
set -g status-right-length 50
|
||
|
|
||
7 years ago
|
# 设置当前窗口格式及颜色
|
||
|
setw -g window-status-current-format "#[bg=brightmagenta]#[fg=colour8] #I #[fg=colour8]#[bg=colour14] #W "
|
||
5 years ago
|
#setw -g window-status-current-bg colour0
|
||
|
#setw -g window-status-current-fg colour11
|
||
|
#setw -g window-status-current-attr dim
|
||
|
#setw -g window-status-fg cyan
|
||
|
#setw -g window-status-bg colour234
|
||
|
#setw -g window-status-attr dim
|
||
7 years ago
|
|
||
6 years ago
|
# user defined
|
||
|
if '[ -f ~/.tmux.conf.local ]' 'source ~/.tmux.conf.local'
|
||
7 years ago
|
|
||
7 years ago
|
# automatic install tpm
|
||
|
if "test ! -d ~/.tmux/plugins/tpm" \
|
||
|
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
|
||
7 years ago
|
|
||
7 years ago
|
|
||
|
# List of plugins
|
||
|
set -g @plugin 'tmux-plugins/tpm'
|
||
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
||
5 years ago
|
set -g @plugin 'tmux-plugins/tmux-open'
|
||
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||
4 years ago
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||
7 years ago
|
|
||
|
# Other examples:
|
||
|
# set -g @plugin 'github_username/plugin_name'
|
||
|
# set -g @plugin '[email protected]/user/plugin'
|
||
|
# set -g @plugin '[email protected]/user/plugin'
|
||
|
|
||
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||
|
run '~/.tmux/plugins/tpm/tpm'
|
||
7 years ago
|
|
||
5 years ago
|
|
||
|
set -g @open-S 'https://www.google.com/search?q='
|
||
|
|