Added clipboard integration

This commit is contained in:
Mahesh Asolkar 2019-12-26 13:59:23 -08:00
parent effa93526f
commit 20eb4e54d8

View File

@ -2,7 +2,7 @@
# TMUX Configuration file # TMUX Configuration file
# #
# General settings {{{ # General settings {{{
set -g default-terminal "screen-256color" set -g default-terminal "xterm-256color"
set -g prefix C-a set -g prefix C-a
unbind-key C-b unbind-key C-b
bind-key C-a send-prefix bind-key C-a send-prefix
@ -10,7 +10,6 @@
set -as terminal-overrides ",*:U8=0" set -as terminal-overrides ",*:U8=0"
set -g mouse on set -g mouse on
bind r source-file ~/.tmux.conf
set -g status-position top set -g status-position top
# set -g status-windows-justify middle # set -g status-windows-justify middle
@ -41,6 +40,17 @@
bind -n M-j select-pane -D bind -n M-j select-pane -D
bind -n M-k select-pane -U bind -n M-k select-pane -U
bind -n M-l select-pane -R bind -n M-l select-pane -R
# Clipboard integration
# ctrl+c to send to clipboard
# Selection with mouse should copy to clipboard right away, in addition to the default action.
unbind -n -Tcopy-mode-vi MouseDragEnd1Pane
bind -Tcopy-mode-vi MouseDragEnd1Pane send -X copy-selection-and-cancel\; run "tmux save-buffer - | xclip -i -sel clipboard > /dev/null"
# Middle click to paste from the clipboard
unbind-key MouseDown2Pane
bind-key -n MouseDown2Pane run "tmux set-buffer \"$(xclip -o -sel clipboard)\"; tmux paste-buffer"
# }}} # }}}
# Footer {{{ # Footer {{{