From 338769a3e73550e7b38b329141003b9b98697e04 Mon Sep 17 00:00:00 2001 From: ache Date: Wed, 1 Apr 2026 07:14:44 +0200 Subject: feat: Configure cursortab for IA_ACHE_ONE --- lua/ache/plugins/llm/cursortab.lua | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'lua/ache') diff --git a/lua/ache/plugins/llm/cursortab.lua b/lua/ache/plugins/llm/cursortab.lua index 45a1aac..c229e74 100644 --- a/lua/ache/plugins/llm/cursortab.lua +++ b/lua/ache/plugins/llm/cursortab.lua @@ -1,16 +1,14 @@ return { "leonardcser/cursortab.nvim", + -- version = "*", -- Use latest tagged version for more stability build = "cd server && go build", - enabled = false, config = function() require("cursortab").setup({ - provider = "sweep", - provider_url = "http://192.168.1.11:8000", - provider_model = "sweep-next-edit-1.5b", - max_context_tokens = 0, -- Max tokens to send as context (0 = no limit) - provider_temperature = 0.0, - provider_max_tokens = 512, - provider_top_k = 10, + provider = { + type = "zeta", + url = "https://ia.ache.one/completion", + api_key_env = "IA_ACHE_ONE_BEARER", + }, }) end, } -- cgit v1.3-2-g11bf