fix: move keymaps to options

This commit is contained in:
Nybkox 2024-06-27 18:19:50 +02:00 committed by Folke Lemaitre
parent 9e37a42e8c
commit 39b23db674

View file

@ -1,15 +1,13 @@
return {
{
"supermaven-inc/supermaven-nvim",
config = function()
require("supermaven-nvim").setup({
keymaps = {
accept_suggestion = "<C-y>",
clear_suggestion = "<C-]>",
accept_word = "<C-j>",
},
})
end,
opts = {
keymaps = {
accept_suggestion = "<C-y>",
clear_suggestion = "<C-]>",
accept_word = "<C-j>",
},
},
},
{
"hrsh7th/nvim-cmp",