From 8fbcb5926f82292b0f39b0b97acb8c2896b7ce20 Mon Sep 17 00:00:00 2001 From: Geoff Cheshire Date: Sun, 10 May 2026 15:21:53 -0400 Subject: [PATCH] Switch blink.cmp fuzzy to prefer_rust implementation Co-Authored-By: Claude Sonnet 4.6 --- lua/plugins/cmp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/cmp.lua b/lua/plugins/cmp.lua index b773b07c..96e7285d 100644 --- a/lua/plugins/cmp.lua +++ b/lua/plugins/cmp.lua @@ -15,6 +15,6 @@ require('blink.cmp').setup { completion = { documentation = { auto_show = false, auto_show_delay_ms = 500 } }, sources = { default = { 'lsp', 'path', 'snippets' } }, snippets = { preset = 'luasnip' }, - fuzzy = { implementation = 'lua' }, + fuzzy = { implementation = 'prefer_rust' }, signature = { enabled = true }, }