summaryrefslogtreecommitdiff
path: root/lua/ache/plugins/llm/cursortab.lua
diff options
context:
space:
mode:
authorache <ache@ache.one>2026-02-19 18:44:33 +0100
committerache <ache@ache.one>2026-02-19 18:44:33 +0100
commit362b4a83c33f5ff30d3dbc3d3d0b996286fae444 (patch)
treee4e1581d47dc04cb4e0081ee4c4dd16e3d4708fa /lua/ache/plugins/llm/cursortab.lua
parentexp: Experiment with treesitter fold (diff)
fix: LUA formatting
Diffstat (limited to 'lua/ache/plugins/llm/cursortab.lua')
-rw-r--r--lua/ache/plugins/llm/cursortab.lua16
1 files changed, 16 insertions, 0 deletions
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,
+}