vim: Add pyls

legacy
Simon Bruder 2020-07-04 14:00:43 +02:00
parent 2ad1b039ba
commit cce1faff2b
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
2 changed files with 15 additions and 13 deletions

View File

@ -98,6 +98,7 @@ set hidden
let g:LanguageClient_serverCommands = {
\ 'rust': ['~/.cargo/bin/rustup', 'run', 'stable', 'rls'],
\ 'go': ['gopls'],
\ 'python': ['pyls'],
\ }
let g:LanguageClient_settingsPath = '~/.config/nvim/LanguageClient.json'

View File

@ -1,17 +1,18 @@
#!/bin/zsh
for module in \
aria2p \
autorandr \
black \
docker-compose \
esptool \
pipenv \
platformio \
pre-commit \
xkcdpass \
xq \
youtube-dl
yq \
'python-language-server[pyflakes,rope]' \
aria2p \
autorandr \
black \
docker-compose \
esptool \
pipenv \
platformio \
pre-commit \
xkcdpass \
xq \
youtube-dl \
yq
do
pipx install --force "${module}"
pipx install "${module}" || true
done