Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ziontee113/ollama.nvim
Neovim Plugin to interact with Ollama API π¦
https://github.com/ziontee113/ollama.nvim
llama2 llms lua nvim ollama
Last synced: 3 months ago
JSON representation
Neovim Plugin to interact with Ollama API π¦
- Host: GitHub
- URL: https://github.com/ziontee113/ollama.nvim
- Owner: ziontee113
- License: mit
- Created: 2023-11-02T09:39:47.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-29T23:22:21.000Z (about 1 year ago)
- Last Synced: 2024-10-18T21:59:18.136Z (3 months ago)
- Topics: llama2, llms, lua, nvim, ollama
- Language: Lua
- Homepage:
- Size: 70.3 KB
- Stars: 23
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ollama.nvim - Neovim Plugin to interact with Ollama API π¦
![Screenshot from 2023-11-08 06-14-42](https://github.com/ziontee113/ollama.nvim/assets/102876811/ede77ff2-9ca4-45b2-bc5b-626d81faaf23)
## β‘Quick Start
Using Lazy:
```lua
local your_keymap = ""return {
"ziontee113/ollama.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
},
keys = { your_keymap },
config = function()
local ollama = require("ollama")
vim.keymap.set("n", your_keymap, function() ollama.show() end, {})
end,
}
```## β₯οΈ Special Thanks to:
- [jmorganca](https://github.com/jmorganca) for creating [Ollama](https://github.com/jmorganca/ollama/)
- [David-Kunz](https://github.com/David-Kunz) for creating [gen.nvim](https://github.com/David-Kunz/gen.nvim)
- [MunifTanjim](https://github.com/David-Kunz) for creating [nui.nvim](https://github.com/MunifTanjim/nui.nvim/)