chore: sync nvim with latop config

This commit is contained in:
2025-10-18 16:17:59 -07:00
parent 67992ddc08
commit 08d6c8439d
17 changed files with 206 additions and 227 deletions

View File

@@ -0,0 +1,12 @@
return {
'github/copilot.vim',
config = function()
vim.keymap.set('i', '<C-J>', 'copilot#Accept("\\<CR>")', {
expr = true,
replace_keycodes = false
})
vim.keymap.set('i', '<C-L>', '<Plug>(copilot-accept-word)')
vim.g.copilot_enabled = 'v:false'
end
}