From f852a10c143a4387b7eeb7ca93618c001f543f4f Mon Sep 17 00:00:00 2001 From: Oleksandr Slynko Date: Wed, 6 Mar 2024 17:48:29 +0000 Subject: [PATCH] PlugInstall configuration should be wrapped into lua (#127) --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 52d1c4fa..e555ca63 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,7 @@ Similar to the lazy setup, you can use the following configuration: Plug 'CopilotC-Nvim/CopilotChat.nvim' call plug#end() +lua << EOF local copilot_chat = require("CopilotChat") copilot_chat.setup({ debug = true, @@ -135,6 +136,8 @@ copilot_chat.setup({ event = "VeryLazy", }) +EOF + nnoremap ccb CopilotChatBuffer nnoremap cce CopilotChatExplain nnoremap cct CopilotChatTests