From 362b4a83c33f5ff30d3dbc3d3d0b996286fae444 Mon Sep 17 00:00:00 2001 From: ache Date: Thu, 19 Feb 2026 18:44:33 +0100 Subject: fix: LUA formatting --- lua/ache/plugins/llm/cursortab.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lua/ache/plugins/llm/cursortab.lua (limited to 'lua/ache/plugins/llm/cursortab.lua') diff --git a/lua/ache/plugins/llm/cursortab.lua b/lua/ache/plugins/llm/cursortab.lua new file mode 100644 index 0000000..45a1aac --- /dev/null +++ b/lua/ache/plugins/llm/cursortab.lua @@ -0,0 +1,16 @@ +return { + "leonardcser/cursortab.nvim", + 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, + }) + end, +} -- cgit v1.3-2-g11bf