return { "nomnivore/ollama.nvim", enabled = false, dependencies = { "nvim-lua/plenary.nvim", "MunifTanjim/nui.nvim", }, -- All the user commands added by the plugin cmd = { "Ollama", "OllamaModel" }, keys = { -- Sample keybind for prompt menu. Note that the is important for selections to work properly. { "oo", ":lua require('ollama').prompt()", desc = "ollama prompt", mode = { "n", "v" }, }, -- Sample keybind for direct prompting. Note that the is important for selections to work properly. { "oG", ":lua require('ollama').prompt('Generate_Code')", desc = "ollama Generate Code", mode = { "n", "v" }, }, }, ---@type Ollama.Config opts = { -- your configuration overrides url = "https://box.ache.one:1080/ollama", prompts = { Complete_this = { prompt = "$sel", input_label = "> ", model = "mistral", action = "display_replace", extract = "$after", }, }, }, }