From 387db52c767e201f2e4ac0ec9fcdefe4bbb6a458 Mon Sep 17 00:00:00 2001 From: Alexander Gehrke Date: Thu, 22 Jun 2023 16:28:46 +0200 Subject: [PATCH] Disable copilot on text files --- lua/plugins/cmp.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/plugins/cmp.lua b/lua/plugins/cmp.lua index d99e213..cefab5e 100644 --- a/lua/plugins/cmp.lua +++ b/lua/plugins/cmp.lua @@ -26,6 +26,7 @@ return { panel = { enabled = false }, filetypes = { mail = false, + text = false, } } }