From 60f5be34056e8a89ec0af22af004ee2f9311026a Mon Sep 17 00:00:00 2001 From: Tomas Rivera <137088692+Totorile1@users.noreply.github.com> Date: Tue, 31 Mar 2026 11:53:58 +0200 Subject: [PATCH] Added a way to configure settings from the app --- startup.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/startup.c b/startup.c index 098f62e..55d884d 100644 --- a/startup.c +++ b/startup.c @@ -297,7 +297,8 @@ int main(int argc, char *argv[]) { } else if (strcmp(vaultSelected,"Create a new vault") == 0) { } else if (strcmp(vaultSelected,"Settings") == 0) { - //(TODO LATER) add a way to change the config.json from the app or at least show all the options + // (TODO LATER) add a way to modify the path to config.json + openNvim("./config.json", 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;