Add github plugin

This commit is contained in:
christiangun 2025-04-29 13:13:20 +02:00
parent 8aab502cf6
commit e53cf00a68
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
return {
'github/copilot.vim',
config = function()
vim.keymap.set('i', '<C-j>', 'copilot#Accept("\\<CR>")', {
expr = true,
replace_keycodes = false,
})
vim.g.copilot_no_tab_map = true
end,
}