diff options
author | tdback <tyler@tdback.net> | 2024-12-24 17:06:36 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2024-12-24 17:06:36 -0500 |
commit | fe5d821116bf67eb6937a61c2a68d9822dfc7ec9 (patch) | |
tree | 5b9c23a7a6d9075f03d7536905db972ce4ea14f9 /users | |
parent | 14d926a20dba17466355f2084fc264f746389fe9 (diff) |
remove need to confirm before killing pane
Diffstat (limited to 'users')
-rw-r--r-- | users/tdback/modules/tmux/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/users/tdback/modules/tmux/default.nix b/users/tdback/modules/tmux/default.nix index 8ac1c74..f48238c 100644 --- a/users/tdback/modules/tmux/default.nix +++ b/users/tdback/modules/tmux/default.nix @@ -2,7 +2,7 @@ { programs.tmux = { enable = true; - package = pkgs.tmux; + package = pkgs.unstable.tmux; terminal = "tmux-256color"; escapeTime = 0; baseIndex = 0; @@ -16,8 +16,8 @@ # Prevent detaching from tmux when closing a session. set -g detach-on-destroy off - # Kill the current session. - bind X kill-session + # Don't prompt for confirmation when killing panes. + bind x kill-pane # Splitting panes. unbind v |