From 0dd3e6e6b63b4d81ea8de65d925ff40f06d4c276 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sat, 4 Jan 2025 17:03:49 +0100 Subject: [PATCH] feat: add the missing config option for enable_debug_commands --- lua/chatgpt_nvim/config.lua | 4 ++++ 1 file changed, 4 insertions(+) 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