Add supermaven.

This commit is contained in:
Sebastian Bugge 2024-11-12 23:52:26 +01:00
parent be85db81b4
commit d7f7135ef7
Signed by: kaholaz
GPG key ID: 2EFFEDEE03519691
4 changed files with 65 additions and 49 deletions

View file

@ -1,4 +1,6 @@
return {
"karb94/neoscroll.nvim",
config = true,
config = function()
require("neoscroll").setup({})
end,
}

View file

@ -0,0 +1,14 @@
return {
"supermaven-inc/supermaven-nvim",
config = function()
require("supermaven-nvim").setup({
keymaps = {
accept_word = "<C-y>",
accept_suggestion = "<C-j>",
clear_suggestion = "<C-n>",
},
disable_builtin_keymaps = false,
disable_keymaps = false,
})
end,
}