diff options
-rw-r--r-- | stow/tmux/.tmux.conf | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/stow/tmux/.tmux.conf b/stow/tmux/.tmux.conf index 506b1de..5f22b01 100644 --- a/stow/tmux/.tmux.conf +++ b/stow/tmux/.tmux.conf @@ -40,6 +40,7 @@ bind C-g copy-mode # Tmux copy commands bind -Tcopy-mode-vi v send -X begin-selection bind -Tcopy-mode-vi y send -X copy-pipe-and-cancel "tmux save-buffer - | xp" +# Hitting enter will copy text but not leave vi mode unbind -T copy-mode-vi Enter bind -Tcopy-mode-vi Enter send -X copy-pipe "tmux save-buffer - | xp" @@ -83,12 +84,10 @@ set-option -g status-right "#{?window_bigger,[#{window_offset_x}#,#{window_offse # List of plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'thornycrackers/tmux-drawer' -set -g @plugin 'thornycrackers/tmux-sessionist' -set -g @plugin 'thornycrackers/tmux-open' -set -g @plugin 'Morantron/tmux-fingers' +set -g @plugin 'Thornycrackers-Forks/tmux-sessionist' +set -g @plugin 'Thornycrackers-Forks/tmux-open' +set -g @plugin 'Thornycrackers-Forks/tmux-fingers' set -g @fingers-main-action 'tmux save-buffer - | xp' # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm' - -set-option -g mouse on |