From 5a346cf7ead63a0824c822918567a714e810e39e Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Mon, 25 Nov 2024 21:36:40 +0100 Subject: [PATCH] Update ruff lsp reference --- templates/nvim/lua/lsp.lua.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/nvim/lua/lsp.lua.j2 b/templates/nvim/lua/lsp.lua.j2 index a5ce5de..77782d1 100644 --- a/templates/nvim/lua/lsp.lua.j2 +++ b/templates/nvim/lua/lsp.lua.j2 @@ -64,7 +64,7 @@ local python_root_dir = function(fname) util.path.dirname(fname) end -nvim_lsp.ruff_lsp.setup({ +nvim_lsp.ruff.setup({ on_attach = on_attach, capabilities = capabilities, root_dir = python_root_dir @@ -79,7 +79,7 @@ nvim_lsp.pylsp.setup({ pylsp = { plugins = { ruff = { - enabled = false -- now through ruff_lsp + enabled = false -- now through ruff lsp } } }