X-Git-Url: https://git.xinqibao.xyz/dotfiles.git/blobdiff_plain/9cf0df188624ad865ea563235842d543e285512a..7f804cd964bc3bfd64b689a47663c94032de1719:/.tmux.conf?ds=sidebyside diff --git a/.tmux.conf b/.tmux.conf index 4aa3ac0..60ca969 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,11 +1,16 @@ # Terminal and colors set -g default-terminal 'xterm-256color' +set -g set-clipboard on +set -g allow-passthrough on # General settings -set -g history-limit 10000 +set -g history-limit 50000 set -g mouse on set -g escape-time 0 set -g focus-events on +set -g base-index 1 +set -g pane-base-index 1 +set -g renumber-windows off # Remap prefix from C-b to C-a unbind C-b @@ -13,7 +18,7 @@ set -g prefix C-a bind C-a send-prefix # Window and pane management -bind c new-window -c ${HOME} +bind c new-window -c "${HOME}" bind | split-window -h -c "#{pane_current_path}" bind - split-window -v -c "#{pane_current_path}" bind C-a last-window @@ -31,11 +36,11 @@ set -g status-right '#[fg=colour233,bg=colour245,bold] %H:%M #[fg=colour233,bg=c set -g status-right-length 50 # Window status -setw -g window-status-current-style fg=colour69,bg=colour253,bold -setw -g window-status-current-format ' #I#[fg=colour250]:#[fg=colour233]#W#[fg=colour69]#F ' -setw -g window-status-style fg=colour131,bg=colour245,none -setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour233]#W#[fg=colour131]#F ' -setw -g window-status-bell-style fg=colour255,bg=colour1,bold +set -g window-status-current-style fg=colour69,bg=colour253,bold +set -g window-status-current-format ' #I#[fg=colour250]:#[fg=colour233]#W#[fg=colour69]#F ' +set -g window-status-style fg=colour131,bg=colour245,none +set -g window-status-format ' #I#[fg=colour237]:#[fg=colour233]#W#[fg=colour131]#F ' +set -g window-status-bell-style fg=colour255,bg=colour1,bold # Pane borders set -g pane-border-style fg=colour238,bg=colour235 @@ -46,15 +51,21 @@ set -g message-style fg=colour232,bg=colour166,bold set -g message-command-style fg=blue,bg=black # Clock mode -setw -g clock-mode-colour colour135 -setw -g mode-style fg=colour196,bg=colour238,bold +set -g clock-mode-colour colour135 +set -g mode-style fg=colour196,bg=colour238,bold # Quiet mode set -g visual-activity off set -g visual-bell off set -g visual-silence off -set -g bell-action none -setw -g monitor-activity off +set -g bell-action other +set -g monitor-activity off +set -g monitor-bell on + +# Vi copy mode +set -g mode-keys vi +bind -T copy-mode-vi v send-keys -X begin-selection +bind -T copy-mode-vi y send-keys -X copy-selection-and-cancel # Reload config bind r source-file ~/.tmux.conf \; display-message "Config reloaded"