feat(nvim): add oatmeal plugin to use ollama directly in Neovim

This commit is contained in:
Stefan Imhoff
2024-01-01 14:13:43 +01:00
parent e844195053
commit 3b423caee8
5 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
return {
"dustinblackman/oatmeal.nvim",
cmd = { "Oatmeal" },
keys = {
{ "<leader>om", mode = "n", desc = "Start Oatmeal session" },
},
opts = {
backend = "ollama",
model = "codellama:latest",
},
}