diff options
| author | ache <ache@ache.one> | 2025-02-26 14:45:54 +0100 |
|---|---|---|
| committer | ache <ache@ache.one> | 2025-02-26 14:45:54 +0100 |
| commit | a43b3dfb991044f08bc52dd16c28f27e1109070a (patch) | |
| tree | 2fd1bf73c4f102e55e6f1b7bcd56c7e5b24ce1fd /lua/ache | |
| parent | Plugin to quick switch between boolean values (diff) | |
Improve comment of tabby plugin
Diffstat (limited to 'lua/ache')
| -rwxr-xr-x | lua/ache/plugins/llm/tabby.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/ache/plugins/llm/tabby.lua b/lua/ache/plugins/llm/tabby.lua index 090d8b3..74d4ad0 100755 --- a/lua/ache/plugins/llm/tabby.lua +++ b/lua/ache/plugins/llm/tabby.lua @@ -1,4 +1,5 @@ --- Tabby is great but not that good and takes time to start +-- Tabby is great --but not that good and takes time to start-- +-- It improves over time. 👍 return { "TabbyML/vim-tabby", @@ -14,7 +15,7 @@ return { vim.g.tabby_inline_completion_keybinding_accept = "<Tab>" vim.g.tabby_inline_completion_trigger = "auto" - -- Toggle auto mode with Ctr + x then <leader> + -- Toggle auto mode with Ctr + x, then <leader> vim.keymap.set({ "i", "n" }, "<leader><c-x>", function() if vim.g.tabby_inline_completion_trigger == "manual" then vim.g.tabby_inline_completion_trigger = "auto" |