vim: Add pyls
This commit is contained in:
parent
2ad1b039ba
commit
cce1faff2b
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in a new issue