From 282b2769a98c34b1cdb12e8e58f48e0a99fd16d9 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sun, 26 Jan 2025 13:00:03 +0100 Subject: [PATCH] Nvim: ollama test --- modules/hm/vim.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/hm/vim.nix b/modules/hm/vim.nix index 9b91718..3f77f8c 100644 --- a/modules/hm/vim.nix +++ b/modules/hm/vim.nix @@ -398,6 +398,17 @@ in vp.diffview-nvim vp.neogit + + { + plugin = vp.ollama-nvim; + type = "lua"; + config = '' + local ollama = require("ollama") + ollama:setup({ + model = "codegemma:7b" + }) + ''; + } ]; # settings = { ignorecase = true; };