From 0c6ddab3663e6e9890209e5c0973dbbc6ff0a71b Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 16 Dec 2024 18:26:12 +0000 Subject: [PATCH] Open a split window with C-b N to enter notes --- nix/modules/home-manager/features/cli/tmux.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/modules/home-manager/features/cli/tmux.nix b/nix/modules/home-manager/features/cli/tmux.nix index 13067b2..355ed3b 100644 --- a/nix/modules/home-manager/features/cli/tmux.nix +++ b/nix/modules/home-manager/features/cli/tmux.nix @@ -75,6 +75,7 @@ in set-option -g pane-border-style "fg=#1f2335" bind-key -r f run-shell "tmux new-window tmux-sessionizer" + bind-key -r N run-shell "tmux split-window -h notes" if-shell "[ -f ~/.tmux.conf.local ]" 'source ~/.tmux.conf.local' '';