Install Python LSP using pipx rather than Homebrew

This commit is contained in:
Danielle McLean 2024-03-08 23:17:36 +11:00
parent 9afc19e14e
commit cc2451053f
Signed by: 00dani
GPG key ID: 52C059C3B22A753E

View file

@ -52,9 +52,9 @@ const lspServers = [
{ {
name: 'pylsp', name: 'pylsp',
filetype: 'python', filetype: 'python',
path: '/usr/local/bin/pylsp', path: expand('~/.local/bin/pylsp'),
args: [], args: [],
install: 'brew install python-lsp-server', install: 'pipx install python-lsp-server[all]',
}, },
{ {