From 500932d68c15e3b2b25d7f00e41ca34840f2c6ea Mon Sep 17 00:00:00 2001 From: Tony Grosinger Date: Wed, 29 May 2024 10:22:47 -0700 Subject: [PATCH] Tmux: Add popup for LazyGit --- .tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 7bf1ce5..4ce5f29 100755 --- a/.tmux.conf +++ b/.tmux.conf @@ -10,6 +10,9 @@ bind-key r source-file ~/.tmux.conf\; display-message "Reloaded config" ### Toggle Mouse Mode bind-key m set-window-option mouse\; display-message "mouse support is now #{?mouse,on,off}" +### Open LazyGit in a popup +bind-key g display-popup -E -w 90% -h 90% lazygit + # New panes and windows have same cwd as the one opening it bind c new-window -c "#{pane_current_path}" bind '"' split-window -c "#{pane_current_path}"