summaryrefslogtreecommitdiff
path: root/lua/ache/plugins/llm/tabby.lua_
diff options
context:
space:
mode:
authorache <ache@ache.one>2025-01-18 22:54:53 +0100
committerache <ache@ache.one>2025-01-18 22:54:53 +0100
commit4186c4153455c211b3470c11824773855f1dd5cd (patch)
treea27160c23fe8142a815f2124af76c5cacac0c125 /lua/ache/plugins/llm/tabby.lua_
parentScroll options (diff)
Config tabby
Diffstat (limited to 'lua/ache/plugins/llm/tabby.lua_')
-rw-r--r--lua/ache/plugins/llm/tabby.lua_25
1 files changed, 0 insertions, 25 deletions
diff --git a/lua/ache/plugins/llm/tabby.lua_ b/lua/ache/plugins/llm/tabby.lua_
deleted file mode 100644
index f9a5837..0000000
--- a/lua/ache/plugins/llm/tabby.lua_
+++ /dev/null
@@ -1,25 +0,0 @@
--- Tabby is great but not that good and takes time to start
-
--- vim.g.tabby_trigger_mode = "automatic"
-
--- Accept with Tab
--- vim.g.tabby_keybinding_accept = "<Tab>"
---
--- -- Trigger with Ctr + h
--- vim.g.tabby_keybinding_trigger_or_dismiss = "<c-h>"
--- vim.g.tabby_trigger_mode = "manual"
---
--- -- Toggle auto mode with Ctr + x then <leader>
--- vim.keymap.set({ "i", "n" }, "<c-x><leader>", function()
--- if vim.g.tabby_trigger_mode == "manual" then
--- vim.g.tabby_trigger_mode = "auto"
--- else
--- vim.g.tabby_trigger_mode = "manual"
--- end
--- end)
-
--- No configuration
-return {
- { "TabbyML/vim-tabby" },
- enabled = false,
-}