diff options
| author | ache <ache@ache.one> | 2026-05-01 23:51:02 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-05-01 23:51:02 +0200 |
| commit | a6281483ae7e860c74e3eecd9a287d504fabeaeb (patch) | |
| tree | e01f580f9dbc5f27809f79bdac03130d3be98b21 /lua/ache | |
| parent | fix: Fix C indent by removing the treesitter support :( (diff) | |
feat: Disable cursor tab plugin by default
This change disables the `cursortab.nvim` plugin by default, preventing it from loading unless explicitly enabled by the user. This addresses potential conflicts and allows for more controlled integration.
Diffstat (limited to 'lua/ache')
| -rw-r--r-- | lua/ache/plugins/llm/cursortab.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/ache/plugins/llm/cursortab.lua b/lua/ache/plugins/llm/cursortab.lua index c229e74..30e9c21 100644 --- a/lua/ache/plugins/llm/cursortab.lua +++ b/lua/ache/plugins/llm/cursortab.lua @@ -2,6 +2,7 @@ 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 = { |