Compare commits
2 commits
705af89243
...
b33c5b6f26
Author | SHA1 | Date | |
---|---|---|---|
b33c5b6f26 | |||
0bc31e442b |
2 changed files with 13 additions and 1 deletions
|
@ -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"
|
||||
|
||||
|
|
12
mappings.lua
12
mappings.lua
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue