2020-11-30 10:31:22 +00:00
|
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
|
|
|
|
set -g status-keys vi
|
|
|
|
setw -g mode-keys vi
|
|
|
|
|
|
|
|
bind | split-window -h -c "#{pane_current_path}"
|
|
|
|
bind - split-window -v -c "#{pane_current_path}"
|
|
|
|
|
|
|
|
# https://stackoverflow.com/questions/18600188/home-end-keys-do-not-work-in-tmux
|
|
|
|
bind -n Home if-shell "$is_vim" "send-keys Escape 'OH'" "send-key C-a"
|
|
|
|
bind -n End if-shell "$is_vim" "send-keys Escape 'OF'" "send-key C-e"
|
|
|
|
|
|
|
|
set -g default-terminal "tmux-256color"
|
|
|
|
# Update with value from default-terminal
|
2020-12-26 22:27:27 +00:00
|
|
|
set -ag terminal-overrides ",*256col*:colors=256:Tc"
|
2020-11-30 10:31:22 +00:00
|
|
|
|
|
|
|
# Ms modifies OSC 52 clipboard handling to work with mosh, see
|
|
|
|
# https://gist.github.com/yudai/95b20e3da66df1b066531997f982b57b
|
|
|
|
set -ag terminal-overrides "vte*:XT:Ms=\\E]52;c;%p2%s\\7,xterm*:XT:Ms=\\E]52;c;%p2%s\\7"
|
|
|
|
|
|
|
|
# enable OSC 52 clipboard
|
|
|
|
set -g set-clipboard on
|
|
|
|
|
|
|
|
set -g mouse on
|
|
|
|
|
|
|
|
unbind-key -T copy-mode-vi v
|
|
|
|
unbind-key -T copy-mode-vi V
|
|
|
|
unbind-key -T copy-mode-vi y
|
|
|
|
unbind-key -T copy-mode-vi Enter
|
|
|
|
unbind-key p
|
|
|
|
# Begin selection in copy mode.
|
|
|
|
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
|
|
|
# Begin rectangle selection in copy mode.
|
|
|
|
bind-key -T copy-mode-vi 'V' send -X rectangle-toggle
|
|
|
|
# Yank selection in copy mode.
|
|
|
|
bind-key -T copy-mode-vi 'y' send -X copy-selection
|
|
|
|
bind-key -T copy-mode-vi Enter send -X copy-selection
|
|
|
|
bind p paste-buffer
|
2021-03-21 07:23:10 +00:00
|
|
|
|
|
|
|
# Plugins
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
set -g @plugin "arcticicestudio/nord-tmux"
|
|
|
|
|
|
|
|
## Install TPM if it's not yet installed
|
|
|
|
if "test ! -d ~/.tmux/plugins/tpm" \
|
|
|
|
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|
|
|
|
|