mirror of
https://github.com/bgrolleman/dotfiles.git
synced 2025-12-06 13:55:25 +01:00
19 lines
370 B
Lua
19 lines
370 B
Lua
return {
|
|
"jackMort/ChatGPT.nvim",
|
|
event = "VeryLazy",
|
|
config = function()
|
|
require("chatgpt").setup({
|
|
openai_params = {
|
|
model = "gpt-4.1",
|
|
max_tokens = 4095,
|
|
},
|
|
})
|
|
end,
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
"nvim-lua/plenary.nvim",
|
|
"folke/trouble.nvim", -- optional
|
|
"nvim-telescope/telescope.nvim",
|
|
},
|
|
}
|