2019-10-07 18:13:45 +00:00
|
|
|
unbind C-b
|
2019-10-10 09:02:42 +00:00
|
|
|
set -g prefix C-s
|
2019-10-07 18:13:45 +00:00
|
|
|
|
|
|
|
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
|
|
|
|
|
|
|
|
bind-key -n C-h select-pane -L
|
|
|
|
bind-key -n C-j select-pane -D
|
|
|
|
bind-key -n C-k select-pane -U
|
|
|
|
bind-key -n C-l select-pane -R
|
|
|
|
|
2019-12-03 09:22:31 +00:00
|
|
|
set-option -g status-keys "emacs"
|
2019-10-10 09:59:29 +00:00
|
|
|
set-option -g default-terminal "screen-256color"
|
2021-06-02 19:07:08 +00:00
|
|
|
set-option -ga terminal-overrides ",*256col*:Tc"
|
2019-10-10 09:59:29 +00:00
|
|
|
|
|
|
|
bind-key - split-window -v -c '#{pane_current_path}'
|
2020-01-14 15:05:39 +00:00
|
|
|
bind-key \\ split-window -h -c '#{pane_current_path}'
|
2019-10-10 09:59:29 +00:00
|
|
|
|
|
|
|
bind -n S-Left resize-pane -L 2
|
|
|
|
bind -n S-Right resize-pane -R 2
|
|
|
|
bind -n S-Down resize-pane -D 1
|
|
|
|
bind -n S-Up resize-pane -U 1
|
|
|
|
|
|
|
|
bind -n C-Left resize-pane -L 10
|
|
|
|
bind -n C-Right resize-pane -R 10
|
|
|
|
bind -n C-Down resize-pane -D 5
|
|
|
|
bind -n C-Up resize-pane -U 5
|
2019-10-07 18:13:45 +00:00
|
|
|
|
2020-01-14 19:53:45 +00:00
|
|
|
set-option -g status-left-length 50
|
2020-01-21 07:22:20 +00:00
|
|
|
set-option -g status-right ""
|
2019-10-07 18:13:45 +00:00
|
|
|
|
2019-10-10 09:59:29 +00:00
|
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
|
|
|
|
set -g base-index 1
|
|
|
|
set -g renumber-windows on
|
|
|
|
|
|
|
|
# Break a pane into a new window.
|
|
|
|
bind-key b break-pane -d
|
|
|
|
|
2020-01-28 20:21:06 +00:00
|
|
|
bind-key C-j choose-tree
|
|
|
|
|
2019-10-10 09:59:29 +00:00
|
|
|
# Use vim keybindings in copy mode
|
|
|
|
setw -g mode-keys vi
|
|
|
|
|
|
|
|
# Setup 'v' to begin selection as in Vim
|
2020-01-16 01:07:45 +00:00
|
|
|
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
|
|
|
bind-key -T copy-mode-vi 'y' send -X copy-pipe "reattach-to-user-namespace pbcopy"
|
2019-10-10 09:59:29 +00:00
|
|
|
|
|
|
|
# Update default binding of `Enter` to also use copy-pipe
|
2020-01-14 20:33:56 +00:00
|
|
|
unbind -T copy-mode-vi Enter
|
2020-01-16 01:07:45 +00:00
|
|
|
bind-key -T copy-mode-vi 'Enter' send -X copy-pipe "reattach-to-user-namespace pbcopy"
|
2020-01-28 20:21:06 +00:00
|
|
|
|
|
|
|
bind C-j split-window -v "tmux list-sessions | sed -E 's/:.*$//' | grep -v \"^$(tmux display-message -p '#S')\$\" | fzf --reverse | xargs tmux switch-client -t"
|
|
|
|
|
|
|
|
bind-key C-b send-keys 'tat && exit' 'C-m'
|
|
|
|
bind-key K run-shell 'tmux switch-client -n \; kill-session -t "$(tmux display-message -p "#S")" || tmux kill-session'
|
|
|
|
|
2021-05-04 21:38:09 +00:00
|
|
|
# Smart pane switching with awareness of Vim splits.
|
|
|
|
# See: https://github.com/christoomey/vim-tmux-navigator
|
|
|
|
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'
|
|
|
|
tmux_version='$(tmux -V | sed -En "s/^tmux ([0-9]+(.[0-9]+)?).*/\1/p")'
|
|
|
|
if-shell -b '[ "$(echo "$tmux_version < 3.0" | bc)" = 1 ]' \
|
|
|
|
"bind-key -n 'C-\\' if-shell \"$is_vim\" 'send-keys C-\\' 'select-pane -l'"
|
|
|
|
if-shell -b '[ "$(echo "$tmux_version >= 3.0" | bc)" = 1 ]' \
|
|
|
|
"bind-key -n 'C-\\' if-shell \"$is_vim\" 'send-keys C-\\\\' 'select-pane -l'"
|
|
|
|
|
|
|
|
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
|
|
|
|
bind-key -T copy-mode-vi 'C-\' select-pane -l
|
2021-05-12 10:40:42 +00:00
|
|
|
|
|
|
|
# Allow clearing screen with ctrl-l by using <prefix> C-l
|
|
|
|
bind C-l send-keys 'C-l'
|
|
|
|
bind C-k send-keys 'C-k'
|
2021-05-13 16:13:16 +00:00
|
|
|
|
|
|
|
# Plugins
|
2021-07-10 21:20:50 +00:00
|
|
|
set -g @plugin "arcticicestudio/nord-tmux"
|
2021-05-13 16:13:16 +00:00
|
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
|
|
|
|
# Initialize TMUX plugin manager
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|