From bc7e7347788ba58e9ed958a12ebce2f43d87fd99 Mon Sep 17 00:00:00 2001 From: Ryan El Kochta Date: Sun, 28 Dec 2025 15:05:39 -0500 Subject: [PATCH] Use uv for python language server --- lua/plugins/lang/python.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/plugins/lang/python.lua b/lua/plugins/lang/python.lua index 96183a0..aa13892 100644 --- a/lua/plugins/lang/python.lua +++ b/lua/plugins/lang/python.lua @@ -3,7 +3,9 @@ return { "neovim/nvim-lspconfig", opts = { my_servers = { - pylsp = {}, + pylsp = { + cmd = { "uv", "run", "pylsp" }, + }, }, }, },