From 693fddbe6fcc1ea6c2a10ae0ce7122a565aa2ca1 Mon Sep 17 00:00:00 2001 From: Ian Griffin Date: Fri, 16 Jan 2026 14:55:46 +0800 Subject: [PATCH] enabled cmp-ai --- lua/plugins/10_ide.lua | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/lua/plugins/10_ide.lua b/lua/plugins/10_ide.lua index ec7ffbb..9d03c50 100644 --- a/lua/plugins/10_ide.lua +++ b/lua/plugins/10_ide.lua @@ -97,23 +97,23 @@ return { }, }, }, - -- { - -- "tzachar/cmp-ai", - -- dependencies = "nvim-lua/plenary.nvim", - -- config = function() - -- local cmp_ai = require("cmp_ai.config") - -- - -- cmp_ai:setup({ - -- max_lines = 1000, - -- provider = "Ollama", -- Change to 'Ollama', 'HF', etc. as needed - -- provider_options = { - -- model = "qwen2.5-coder:latest", - -- }, - -- notify = true, - -- run_on_every_keystroke = true, - -- }) - -- end, - -- }, + { + "tzachar/cmp-ai", + dependencies = "nvim-lua/plenary.nvim", + config = function() + local cmp_ai = require("cmp_ai.config") + + cmp_ai:setup({ + max_lines = 1000, + provider = "Ollama", -- Change to 'Ollama', 'HF', etc. as needed + provider_options = { + model = "qwen2.5-coder:latest", + }, + notify = true, + run_on_every_keystroke = true, + }) + end, + }, { "hrsh7th/nvim-cmp", event = { "InsertEnter", "CmdlineEnter" }, @@ -125,7 +125,7 @@ return { "hrsh7th/cmp-nvim-lsp-document-symbol", "hrsh7th/cmp-cmdline", "amarz45/nvim-cmp-fonts", - -- "tzachar/cmp-ai", + "tzachar/cmp-ai", "garymjr/nvim-snippets", -- Ensure the snippet source is loaded }, config = function()