kickstart.nvim/lua/custom/plugins/copilot.lua

7 lines
158 B
Lua
Raw Normal View History

2023-05-23 16:37:59 +02:00
return {
2023-05-25 15:58:01 +02:00
"github/copilot.vim",
config = function()
vim.api.nvim_set_keymap("i", "<C-J>", 'copilot#Accept("<CR>")', { silent = true, expr = true })
end
2023-05-23 16:37:59 +02:00
}