diff --git a/lua/custom/plugins/github.lua b/lua/custom/plugins/github.lua new file mode 100644 index 00000000..eed575b9 --- /dev/null +++ b/lua/custom/plugins/github.lua @@ -0,0 +1,10 @@ +return { + 'github/copilot.vim', + config = function() + vim.keymap.set('i', '', 'copilot#Accept("\\")', { + expr = true, + replace_keycodes = false, + }) + vim.g.copilot_no_tab_map = true + end, +}