added llm completion

This commit is contained in:
Nikita Avgustanov 2025-12-19 11:27:07 +04:00
parent 168b40ba9c
commit 83202acadb
1 changed files with 12 additions and 1 deletions

View File

@ -861,12 +861,23 @@ require('lazy').setup({
-- By default, you may press `<c-space>` to show the documentation.
-- Optionally, set `auto_show = true` to show the documentation after a delay.
documentation = { auto_show = false, auto_show_delay_ms = 500 },
-- Recommended to avoid unnecessary request <https://github.com/milanglacier/minuet-ai.nvim?tab=readme-ov-file#blink-cmp-setup>
trigger = { prefetch_on_insert = false },
},
sources = {
default = { 'lsp', 'path', 'snippets', 'lazydev' },
default = { 'lsp', 'path', 'snippets', 'lazydev', 'minuet' },
providers = {
lazydev = { module = 'lazydev.integrations.blink', score_offset = 100 },
minuet = {
name = 'minuet',
module = 'minuet.blink',
async = true,
-- Should match minuet.config.request_timeout * 1000,
-- since minuet.config.request_timeout is in seconds
timeout_ms = 3000,
score_offset = 50, -- Gives minuet higher priority among suggestions
},
},
},