From 43586edf29d2f682c689f587180288968d873758 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Tue, 18 Jun 2024 15:04:59 +0300 Subject: [PATCH] neovim: add ollama-nvim plugin --- neovim/dev.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/neovim/dev.nix b/neovim/dev.nix index e56777e..f48dbdb 100644 --- a/neovim/dev.nix +++ b/neovim/dev.nix @@ -73,6 +73,12 @@ in # Enable fast navigation between windows vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ]; + plugin.ollama-nvim = { + enable = true; + name = "ollama"; + setupSettings = { }; + }; + plugin.nlsp-settings-nvim = { enable = true; name = "nlspsettings";