From 800fae9cee517ebd2288ad1d75de517f2a1f6126 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 24 Jan 2025 13:23:15 -0800 Subject: [PATCH] Fix nvim tmux clipboard --- assets/default/dotfiles/tmux.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/default/dotfiles/tmux.conf b/assets/default/dotfiles/tmux.conf index 9cf87e5..994a8bb 100644 --- a/assets/default/dotfiles/tmux.conf +++ b/assets/default/dotfiles/tmux.conf @@ -60,7 +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 +# Make this on to allow passing of clipboard up from nvim 10.0 to tmux and Ghostty +set -g set-clipboard on # Auto load tmuxline config for themes if-shell "test -f ~/.tmuxline.conf" "source ~/.tmuxline.conf"