From 754eef18b9ea88b3b50fee47c41c5375ef272403 Mon Sep 17 00:00:00 2001 From: Simon Lasbrugnas Date: Fri, 16 Aug 2024 13:45:23 +0200 Subject: [PATCH] feat(coding): add supermaven autocompletion --- lua/plugins/coding.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lua/plugins/coding.lua b/lua/plugins/coding.lua index a04487c..9c9c8ea 100644 --- a/lua/plugins/coding.lua +++ b/lua/plugins/coding.lua @@ -64,7 +64,14 @@ return { require("cmp").setup(opts) end, }, - -- Copilot + -- Supermaven (copilot) + { + "supermaven-inc/supermaven-nvim", + config = function() + require("supermaven-nvim").setup({}) + end, + }, + -- GitHub Copilot -- { "github/copilot.vim" }, -- Comment { @@ -79,4 +86,6 @@ return { }, -- Surround { "tpope/vim-surround", event = "BufRead", }, + -- Unimpaired + { "tpope/vim-unimpaired", event = "BufRead", }, }