diff options
Diffstat (limited to 'lua/ache')
| -rw-r--r-- | lua/ache/plugins/model.lua | 3 | ||||
| -rw-r--r-- | lua/ache/plugins/nvim-cmp.lua | 2 | ||||
| -rw-r--r-- | lua/ache/plugins/telescope.lua | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/lua/ache/plugins/model.lua b/lua/ache/plugins/model.lua index ea63881..8955dd2 100644 --- a/lua/ache/plugins/model.lua +++ b/lua/ache/plugins/model.lua @@ -1,5 +1,8 @@ --[ -- A basic Model completion with ollama. +-- +-- It's old, but good. +-- TODO: Check if <https://github.com/olimorris/codecompanion.nvim> fully replaces it. --] return { "gsuuon/model.nvim", diff --git a/lua/ache/plugins/nvim-cmp.lua b/lua/ache/plugins/nvim-cmp.lua index b6918ef..5a63ab1 100644 --- a/lua/ache/plugins/nvim-cmp.lua +++ b/lua/ache/plugins/nvim-cmp.lua @@ -2,6 +2,8 @@ -- Completion with snippets and LSP and all... -- -- Very good. +-- +-- TODO: Should check <saghen/blink.cmp> --] return { "hrsh7th/nvim-cmp", diff --git a/lua/ache/plugins/telescope.lua b/lua/ache/plugins/telescope.lua index 9462c16..bc573cc 100644 --- a/lua/ache/plugins/telescope.lua +++ b/lua/ache/plugins/telescope.lua @@ -1,6 +1,9 @@ --[ -- A plugin to make "search box" and panel. -- Good UI. 👍 +-- +-- +-- TODO: Should check <folke/snacks.nvim> --] return { |