We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b04ff10 commit 900392fCopy full SHA for 900392f
tmux.conf
@@ -31,3 +31,8 @@ bind -r C-l resize-pane -R 8
31
set escape-time 0
32
33
set -g default-terminal "xterm-256color"
34
+
35
+# fix for copy/paste issue in mac osx
36
+setw -g mode-keys vi
37
+bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
38
+bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
vimrc
@@ -1,6 +1,9 @@
1
" This must be first, because it changes other options as side effect
2
set nocompatible
3
4
+" fix for mac osx copy/paste issue
5
+set clipboard=unnamed
6
7
" vim plugins
8
" -----------------------------------------------------------------
9
call plug#begin('~/.vim/plugged')
0 commit comments