From f36c868345a0dbd5a95bf608ee09c266b6831f00 Mon Sep 17 00:00:00 2001 From: Tilo K Date: Wed, 27 Sep 2023 19:56:34 +0200 Subject: [PATCH] Added Copilot --- lua/custom/plugins/copilot.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/custom/plugins/copilot.lua diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua new file mode 100644 index 0000000..85b0ef5 --- /dev/null +++ b/lua/custom/plugins/copilot.lua @@ -0,0 +1,8 @@ +return { + "zbirenbaum/copilot.lua", + cmd = "Copilot", + event = "InsertEnter", + config = function() + require("copilot").setup({}) + end, +}