dotfiles/.config/nvim/lua/plugins/copilot.lua
2022-11-22 09:56:14 +01:00

15 lines
435 B
Lua

local map = function(type, key, value, opts)
local options = { noremap = true }
if opts then
options = vim.tbl_extend("force", options, opts)
end
vim.api.nvim_set_keymap(type, key, value, options)
end
map("i", "<C-J>", [[copilot#Accept("<CR>")]], { noremap = true, silent = true, expr = true })
vim.g.copilot_no_tab_map = true
vim.g.copilot_assume_mapped = true
vim.g.copilot_tab_fallback = ""
vim.g.copilot_no_tab_map = true