summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf11
1 files changed, 11 insertions, 0 deletions
diff --git a/.tmux.conf b/.tmux.conf
new file mode 100644
index 0000000..fc4b931
--- /dev/null
+++ b/.tmux.conf
@@ -0,0 +1,11 @@
1# Vi mode for copy
2setw -g mode-keys vi
3
4# Mouse selection
5set -g mouse on
6
7# v to start selection, y to yank (like vim)
8bind-key -T copy-mode-vi v send-keys -X begin-selection
9bind-key -T copy-mode-vi y send-keys -X copy-pipe-no-clear "pbcopy"
10bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-no-clear "pbcopy"
11bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-no-clear "pbcopy"