From ff290950ba2e08f15c3cf9c69d6e4628812972dd Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Sat, 24 Aug 2024 10:06:45 +0200 Subject: [PATCH] Disable jedi fuzzy completion --- templates/nvim/lua/lsp.lua.j2 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/templates/nvim/lua/lsp.lua.j2 b/templates/nvim/lua/lsp.lua.j2 index c689ff6..a41af24 100644 --- a/templates/nvim/lua/lsp.lua.j2 +++ b/templates/nvim/lua/lsp.lua.j2 @@ -82,9 +82,8 @@ nvim_lsp.pylsp.setup({ pylsp = { plugins = { ruff = { - enabled = false - }, - jedi_completion = { fuzzy = true } + enabled = false -- now through ruff_lsp + } } } },