From 009e9a244b3f2466376afb77199c1da714bdfafe Mon Sep 17 00:00:00 2001 From: Juliano Barbosa Date: Fri, 23 Aug 2024 07:15:28 -0300 Subject: [PATCH] chore(copilot): add filetypes configuration Added filetypes configuration to copilot plugin. --- lua/custom/plugins/copilot.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua index 31ec0d0a..4b67860d 100644 --- a/lua/custom/plugins/copilot.lua +++ b/lua/custom/plugins/copilot.lua @@ -17,5 +17,10 @@ return { replace_keycodes = false, }) vim.g.copilot_no_tab_map = true + vim.g.copilot_filetypes = { + gitcommit = true, + markdown = true, + xml = false, + } end, }