This commit is contained in:
saarsena@gmail.com 2026-05-04 22:09:09 -04:00
parent 085347ddac
commit c91e89245c
5 changed files with 399 additions and 9 deletions

22
lua/plugins/minuet.lua Normal file
View file

@ -0,0 +1,22 @@
return {
'milanglacier/minuet-ai.nvim',
event = 'InsertEnter',
opts = {
provider = 'codestral',
request_timeout = 3,
n_completions = 2,
context_window = 12000,
provider_options = {
codestral = {
model = 'codestral-latest',
end_point = 'https://api.mistral.ai/v1/fim/completions',
api_key = 'MISTRAL_API_KEY',
stream = true,
optional = {
max_tokens = 256,
stop = { '\n\n' },
},
},
},
},
}