diff --git a/lua/chatgpt_nvim/config.lua b/lua/chatgpt_nvim/config.lua index ab250af..450d2d7 100644 --- a/lua/chatgpt_nvim/config.lua +++ b/lua/chatgpt_nvim/config.lua @@ -115,6 +115,7 @@ function M.load() enable_chunking = false, -- New default for step-by-step enable_step_by_step = true + enable_debug_commands = false } if fd then @@ -164,6 +165,9 @@ function M.load() if type(result.enable_step_by_step) == "boolean" then config.enable_step_by_step = result.enable_step_by_step end + if type(result.enable_debug_commands) == "boolean" then + config.enable_debug_commands = result.enable_debug_commands + end end end else