From 5820cea8156472525907d7a3ea0f631ce7ba363e Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 26 Mar 2025 00:00:00 +0000 Subject: [PATCH] Open current note in a new tmux window --- nix/modules/home-manager/cli/tmux.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/modules/home-manager/cli/tmux.nix b/nix/modules/home-manager/cli/tmux.nix index 3cb8444a..997bdb22 100644 --- a/nix/modules/home-manager/cli/tmux.nix +++ b/nix/modules/home-manager/cli/tmux.nix @@ -83,7 +83,7 @@ in bind-key -r f run-shell "tmux new-window tmux-sessionizer" bind-key -r D new-window -c "#{pane_current_path}" "[[ -e TODO.md ]] && nvim TODO.md || nvim ~/Documents/wiki/todo.txt" - bind-key -r N split-window -h "notes" + bind-key -r N new-window "notes" bind-key -r W split-window -h -c ~/Documents/wiki "nvim '+Telescope find_files'" '';