nvim/after/plugin/genai.lua

10 lines
171 B
Lua
Raw Normal View History

2024-03-24 20:10:18 +00:00
vim.keymap.set({ 'n', 'v' }, '<leader>]', ':Gen<CR>')
require('gen').setup({
2025-01-01 21:54:29 +00:00
model = "llama3.2",
host = "10.10.1.35",
2024-03-24 20:10:18 +00:00
init = function(options) end,
debug = false
})