From 7fc7a4baddbe95415c683acac4ddc49ef84214c2 Mon Sep 17 00:00:00 2001 From: Bogdan Buduroiu Date: Mon, 24 Feb 2025 15:21:45 +0800 Subject: [PATCH] fix: nil copilor autosuggestion --- nvim/lua/configs/avante.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/configs/avante.lua b/nvim/lua/configs/avante.lua index 6c54185..25beb31 100644 --- a/nvim/lua/configs/avante.lua +++ b/nvim/lua/configs/avante.lua @@ -10,5 +10,5 @@ return { max_tokens = 4096, }, }, - auto_suggestions_provider = "copilot", -- Since auto-suggestions are a high-frequency operation and therefore expensive, it is recommended to specify an inexpensive provider or even a free provider: copilot + auto_suggestions_provider = nil, -- Since auto-suggestions are a high-frequency operation and therefore expensive, it is recommended to specify an inexpensive provider or even a free provider: copilot }