autocomplete working with blink-cmp

This commit is contained in:
Joost Agterhoek 2025-07-09 14:05:19 +02:00
parent 42b30ab408
commit b876cf8eb9

View File

@ -4,6 +4,7 @@ return {
event = "VimEnter",
version = "1.*",
dependencies = {
"ribru17/blink-cmp-spell",
-- Snippet Engine
{
"L3MON4D3/LuaSnip",
@ -76,8 +77,15 @@ return {
},
sources = {
default = { "lsp", "path", "snippets", "lazydev" },
default = { "lsp", "path", "snippets", "spell", "lazydev" },
providers = {
spell = {
name = 'Spell',
module = 'blink-cmp-spell',
opts = {
max_entries = 5
}
},
lazydev = { module = "lazydev.integrations.blink", score_offset = 100 },
},
},
@ -91,7 +99,9 @@ return {
-- the rust implementation via `'prefer_rust_with_warning'`
--
-- See :h blink-cmp-config-fuzzy for more information
fuzzy = { implementation = "lua" },
fuzzy = {
implementation = "lua",
},
-- Shows a signature help window while you type arguments for a function
signature = { enabled = true },