From a37cb3a3a4ac9dd77ff8ec0d3b14a7b50551a096 Mon Sep 17 00:00:00 2001 From: greg-compass Date: Thu, 6 Oct 2022 10:26:45 -0500 Subject: [PATCH] Add tmux paste binding --- home/home.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/home.nix b/home/home.nix index f93b979..ad2897a 100644 --- a/home/home.nix +++ b/home/home.nix @@ -43,7 +43,10 @@ in { shell = "${pkgs.xonsh}/bin/xonsh"; terminal = "xterm-256color"; customPaneNavigationAndResize = true; - extraConfig = "set-option -g default-command ${pkgs.xonsh}/bin/xonsh"; + extraConfig = (lib.strings.concatStringsSep "\n" [ + "set-option -g default-command ${pkgs.xonsh}/bin/xonsh" + "bind P paste-buffer" + ]); }; home.stateVersion = "22.05";