Compare commits

...

2 commits

2 changed files with 13 additions and 1 deletions

View file

@ -1,7 +1,7 @@
---@type ChadrcConfig
local M = {}
M.ui = { theme = 'chadracula' }
M.ui = { theme = 'oxocarbon' }
M.plugins = "custom.plugins"
M.mappings = require "custom.mappings"

View file

@ -11,4 +11,16 @@ M.general = {
},
}
M.copilot = {
i = {
["<C-a>"] = {
function()
vim.fn.feedkeys(vim.fn['copilot#Accept'](), '')
end,
"Copilot Accept",
{replace_keycodes = true, nowait=true, silent=true, expr=true, noremap=true}
}
}
}
return M