From e53cf00a68789c15cedfc3262fff1d34028b026f Mon Sep 17 00:00:00 2001 From: christiangun Date: Tue, 29 Apr 2025 13:13:20 +0200 Subject: [PATCH] Add github plugin --- lua/custom/plugins/github.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/custom/plugins/github.lua 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, +}