From 5e3619c83f4f12f60e0376b95d84afde4f1ae374 Mon Sep 17 00:00:00 2001 From: TLCooper4031 <58536802+TLCooper4031@users.noreply.github.com> Date: Mon, 21 Apr 2025 15:00:21 -0400 Subject: [PATCH] switch blink completion to rust engine --- init.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/init.lua b/init.lua index ed2f7d4e..39e87eee 100644 --- a/init.lua +++ b/init.lua @@ -129,11 +129,11 @@ vim.api.nvim_create_autocmd('TextYankPost', { }) vim.api.nvim_create_autocmd('FileType', { - pattern = { 'markdown' }, - callback = function() - vim.wo.conceallevel = 2 - end, - }) + pattern = { 'markdown' }, + callback = function() + vim.wo.conceallevel = 2 + end, +}) -- [[ Install `lazy.nvim` plugin manager ]] -- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info @@ -803,7 +803,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 },