From 4f37347f1085871c01279d802e77fc896e4d604d Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Thu, 13 Jun 2024 12:36:53 -0700 Subject: [PATCH] Tmux to use external clipboard --- assets/default/dotfiles/tmux.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/default/dotfiles/tmux.conf b/assets/default/dotfiles/tmux.conf index d902563..9cf87e5 100644 --- a/assets/default/dotfiles/tmux.conf +++ b/assets/default/dotfiles/tmux.conf @@ -60,6 +60,8 @@ unbind y if-shell 'test "$(uname -s)" = "Darwin"' 'bind y run "tmux show-buffer | pbcopy"' if-shell 'test "$(uname -s)" = "Linux"' 'bind y run "tmux show-buffer | xclip -sel clip -i"' +set -g set-clipboard external + # Auto load tmuxline config for themes if-shell "test -f ~/.tmuxline.conf" "source ~/.tmuxline.conf"