From 8159826f0ab0ed0b0b42b570829aa173ecb17e1c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 21 Sep 2025 22:31:38 +0100 Subject: [PATCH] Open the file with the cursor on the third line Signed-off-by: Oliver Davies --- modules/scripts/todo.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/scripts/todo.nix b/modules/scripts/todo.nix index 767a4bbb..22c4c0c4 100644 --- a/modules/scripts/todo.nix +++ b/modules/scripts/todo.nix @@ -12,7 +12,7 @@ in runtimeInputs = with pkgs; [ coreutils ]; - text = ''"$EDITOR" "$TODO_FILE"''; + text = ''"$EDITOR" +3 "$TODO_FILE"''; }; };