From 38e86ec7f931a9b283a517823d77856401f8a980 Mon Sep 17 00:00:00 2001 From: Tilo K Date: Wed, 27 Sep 2023 20:00:59 +0200 Subject: [PATCH] Changed Copilot Config --- lua/custom/plugins/copilot.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua index 85b0ef5..b49c1cc 100644 --- a/lua/custom/plugins/copilot.lua +++ b/lua/custom/plugins/copilot.lua @@ -3,6 +3,10 @@ return { cmd = "Copilot", event = "InsertEnter", config = function() - require("copilot").setup({}) + require("copilot").setup({ + filetypes = { + ["*"] = true, + }, + }) end, }