Add tmux paste binding

This commit is contained in:
greg-compass
2022-11-01 09:15:00 -05:00
parent f32113b001
commit a37cb3a3a4
+4 -1
View File
@@ -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";