From 390d23083905e9cd26ea44393422630ffe99c9a5 Mon Sep 17 00:00:00 2001 From: stefan Date: Mon, 3 Mar 2025 21:34:53 -0500 Subject: getting started with multi-system support --- modules/neovim/nvim/lua/config/lsp.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'modules/neovim/nvim/lua/config/lsp.lua') diff --git a/modules/neovim/nvim/lua/config/lsp.lua b/modules/neovim/nvim/lua/config/lsp.lua index 5effdc9..f895a8b 100644 --- a/modules/neovim/nvim/lua/config/lsp.lua +++ b/modules/neovim/nvim/lua/config/lsp.lua @@ -1,5 +1,3 @@ -local methods = vim.lsp.protocol.Methods - local servers = { clangd = {}, zls = {} @@ -13,7 +11,7 @@ require('blink.cmp').setup({ }, completion = { list = { - selection = { preselect = true, auto_insert = true }, + selection = { preselect = true, auto_insert = false }, }, menu = { border = "rounded", @@ -22,6 +20,7 @@ require('blink.cmp').setup({ documentation = { window = { border = 'rounded' } }, }, signature = { window = { border = 'rounded' } }, + fuzzy = { implementation = "prefer_rust" } }) vim.diagnostic.config({ -- cgit v1.2.3