feat(coding): add supermaven autocompletion
This commit is contained in:
parent
38955b8cca
commit
754eef18b9
1 changed files with 10 additions and 1 deletions
|
|
@ -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", },
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue