From 4cfe18fcec263df3ca58958af3ffaaf94cf631a7 Mon Sep 17 00:00:00 2001 From: Yash Karandikar Date: Fri, 24 Jun 2022 23:06:20 +0530 Subject: [PATCH] Add "kill" keybinds to tmux --- .tmux.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 890f372..3aa0cf7 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -10,6 +10,8 @@ set-option -g prefix C-a # tab management (consistent with vim config) bind z previous-window bind x next-window +bind q killw +bind Q confirm-before -p "kill session? (y/n)" kill-session # initialize plugin manager (this line should always be at the very bottom) run '~/.tmux/plugins/tpm/tpm'