mirror of
https://github.com/cap153/nvim.git
synced 2025-12-26 19:25:01 +08:00
15 lines
298 B
Lua
15 lines
298 B
Lua
-- ===
|
||
-- === 一个ai编程助手,号称是最快的copilot
|
||
-- ===
|
||
return {
|
||
"supermaven-inc/supermaven-nvim",
|
||
config = function()
|
||
require("supermaven-nvim").setup({
|
||
keymaps = {
|
||
accept_suggestion = "<S-CR>",
|
||
clear_suggestion = "<C-n>",
|
||
accept_word = "<C-i>",
|
||
},
|
||
})
|
||
end
|
||
}
|