diff options
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 |