From cc2451053f1f704edde66b2f63aec7b85d9a976b Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Fri, 8 Mar 2024 23:17:36 +1100 Subject: [PATCH] Install Python LSP using pipx rather than Homebrew --- dot-config/vim/lsp/servers.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot-config/vim/lsp/servers.vim b/dot-config/vim/lsp/servers.vim index faf6302..b2fe961 100644 --- a/dot-config/vim/lsp/servers.vim +++ b/dot-config/vim/lsp/servers.vim @@ -52,9 +52,9 @@ const lspServers = [ { name: 'pylsp', filetype: 'python', - path: '/usr/local/bin/pylsp', + path: expand('~/.local/bin/pylsp'), args: [], - install: 'brew install python-lsp-server', + install: 'pipx install python-lsp-server[all]', }, {