feat(coding): add supermaven autocompletion

This commit is contained in:
Simon Lasbrugnas 2024-08-16 13:45:23 +02:00
parent 38955b8cca
commit 754eef18b9
Signed by untrusted user who does not match committer: simon
GPG key ID: 86039876BA6ED8DE

View file

@ -64,7 +64,14 @@ return {
require("cmp").setup(opts) require("cmp").setup(opts)
end, end,
}, },
-- Copilot -- Supermaven (copilot)
{
"supermaven-inc/supermaven-nvim",
config = function()
require("supermaven-nvim").setup({})
end,
},
-- GitHub Copilot
-- { "github/copilot.vim" }, -- { "github/copilot.vim" },
-- Comment -- Comment
{ {
@ -79,4 +86,6 @@ return {
}, },
-- Surround -- Surround
{ "tpope/vim-surround", event = "BufRead", }, { "tpope/vim-surround", event = "BufRead", },
-- Unimpaired
{ "tpope/vim-unimpaired", event = "BufRead", },
} }