From 8338ee2d9c6db7747a7265fb27667dd83ac7c797 Mon Sep 17 00:00:00 2001 From: gptlang <121417512+gptlang@users.noreply.github.com> Date: Sun, 4 Feb 2024 21:54:25 +0000 Subject: [PATCH] Add global option to lua to disable separators --- lua/CopilotChat/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/CopilotChat/init.lua b/lua/CopilotChat/init.lua index 85510023..319b574a 100644 --- a/lua/CopilotChat/init.lua +++ b/lua/CopilotChat/init.lua @@ -16,6 +16,7 @@ _COPILOT_CHAT_GLOBAL_CONFIG = {} -- - debug: (boolean?) default: false. M.setup = function(options) vim.g.copilot_chat_show_help = options and options.show_help or 'yes' + vim.g.copilot_chat_disable_separators = options and options.disable_separators or false local debug = options and options.debug or false _COPILOT_CHAT_GLOBAL_CONFIG.debug = debug