From 6040137c85d5bca2b9c29f71d1351915c4137112 Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Sun, 8 Feb 2026 22:58:58 -0600 Subject: [PATCH] enable rust fuzzy finder for autocompletion --- init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 9e63435a..5792f8fe 100644 --- a/init.lua +++ b/init.lua @@ -717,6 +717,7 @@ require('lazy').setup({ dependencies = { -- `friendly-snippets` contains a variety of premade snippets. -- See the README about individual language/framework/plugin snippets: + -- TODO: look into friendly-snippets -- https://github.com/rafamadriz/friendly-snippets -- { -- 'rafamadriz/friendly-snippets', @@ -784,7 +785,7 @@ require('lazy').setup({ -- the rust implementation via `'prefer_rust_with_warning'` -- -- See :h blink-cmp-config-fuzzy for more information - fuzzy = { implementation = 'lua' }, + fuzzy = { implementation = 'prefer_rust_with_warning' }, -- Shows a signature help window while you type arguments for a function signature = { enabled = true },