From 28a0e2310fc67e3ed90533bdc6096c41f1b9cdf7 Mon Sep 17 00:00:00 2001 From: Tomas Rivera <137088692+Totorile1@users.noreply.github.com> Date: Wed, 1 Apr 2026 11:14:30 +0200 Subject: [PATCH] Forgot a change in last commit --- startup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startup.c b/startup.c index 1d7e472..ee0792d 100644 --- a/startup.c +++ b/startup.c @@ -495,7 +495,7 @@ int main(int argc, char *argv[]) { createNewVault(notesDirectoryString, debug); } else if (strcmp(vaultSelected,"Settings") == 0) { // (TODO LATER) add a way to modify the path to config.json - openNvim("./config.json", debug); + openNvim(configPath, debug); } else if (strcmp(vaultSelected,"Quit (Ctrl+C)") == 0) { if (debug) {printf("\e[0;32m[DEBUG]\e[0m The program was exited.\n");} shouldExit = 1;