diff --git a/lua/lazyvim/plugins/extras/coding/supermaven.lua b/lua/lazyvim/plugins/extras/coding/supermaven.lua new file mode 100644 index 00000000..3995b096 --- /dev/null +++ b/lua/lazyvim/plugins/extras/coding/supermaven.lua @@ -0,0 +1,20 @@ +return { + { + "supermaven-inc/supermaven-nvim", + config = function() + require("supermaven-nvim").setup({ + keymaps = { + accept_suggestion = "", + clear_suggestion = "", + accept_word = "", + }, + }) + end, + }, + { + "hrsh7th/nvim-cmp", + opts = function(_, opts) + table.insert(opts.sources, { name = "supermaven", priority = 100 }) + end, + }, +}