From c5b2c6e24a54c35f7eeb4aeeb5725174c52d9029 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sun, 17 Dec 2023 20:20:20 +0200 Subject: [PATCH] Nvim: make copilot lower in the completions list --- home/.config/nvim/lua/plugins/cmp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.config/nvim/lua/plugins/cmp.lua b/home/.config/nvim/lua/plugins/cmp.lua index cfa8182..3891206 100644 --- a/home/.config/nvim/lua/plugins/cmp.lua +++ b/home/.config/nvim/lua/plugins/cmp.lua @@ -67,10 +67,10 @@ return { }, sources = { { name = "luasnip" }, - { name = "copilot" }, { name = "nvim_lsp" }, { name = "nvim_lua" }, { name = "git" }, + { name = "copilot" }, { name = "buffer" }, { name = "spell" }, { name = "path" },