moving
This commit is contained in:
parent
085347ddac
commit
c91e89245c
5 changed files with 399 additions and 9 deletions
|
|
@ -23,6 +23,11 @@ return {
|
|||
preset = 'default',
|
||||
['<Tab>'] = { 'select_and_accept', 'fallback' },
|
||||
['<Esc>'] = { 'cancel', 'fallback' },
|
||||
['<M-w>'] = {
|
||||
function(cmp)
|
||||
cmp.show { providers = { 'minuet' } }
|
||||
end,
|
||||
},
|
||||
},
|
||||
appearance = {
|
||||
nerd_font_variant = 'mono',
|
||||
|
|
@ -35,9 +40,10 @@ return {
|
|||
show_with_menu = true,
|
||||
},
|
||||
documentation = { auto_show = true, auto_show_delay_ms = 500 },
|
||||
trigger = { prefetch_on_insert = false },
|
||||
},
|
||||
sources = {
|
||||
default = { 'lsp', 'path', 'snippets', 'lazydev', 'codecompanion' },
|
||||
default = { 'lsp', 'path', 'snippets', 'lazydev', 'codecompanion', 'minuet' },
|
||||
providers = {
|
||||
lazydev = { module = 'lazydev.integrations.blink', score_offset = 100 },
|
||||
codecompanion = {
|
||||
|
|
@ -45,6 +51,13 @@ return {
|
|||
module = 'codecompanion.providers.completion.blink',
|
||||
enabled = true,
|
||||
},
|
||||
minuet = {
|
||||
name = 'minuet',
|
||||
module = 'minuet.blink',
|
||||
async = true,
|
||||
timeout_ms = 3000,
|
||||
score_offset = 50,
|
||||
},
|
||||
},
|
||||
},
|
||||
snippets = { preset = 'luasnip' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue