Compare commits

..

No commits in common. "b33c5b6f266768fa729c3d84d249e291dcc05c91" and "705af89243bc2d6175a20e84423cd0db23c0faa6" have entirely different histories.

2 changed files with 1 additions and 13 deletions

View file

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

View file

@ -11,16 +11,4 @@ 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 return M