vim: Add pyls
This commit is contained in:
parent
2ad1b039ba
commit
cce1faff2b
|
@ -98,6 +98,7 @@ set hidden
|
||||||
let g:LanguageClient_serverCommands = {
|
let g:LanguageClient_serverCommands = {
|
||||||
\ 'rust': ['~/.cargo/bin/rustup', 'run', 'stable', 'rls'],
|
\ 'rust': ['~/.cargo/bin/rustup', 'run', 'stable', 'rls'],
|
||||||
\ 'go': ['gopls'],
|
\ 'go': ['gopls'],
|
||||||
|
\ 'python': ['pyls'],
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
let g:LanguageClient_settingsPath = '~/.config/nvim/LanguageClient.json'
|
let g:LanguageClient_settingsPath = '~/.config/nvim/LanguageClient.json'
|
||||||
|
|
|
@ -1,17 +1,18 @@
|
||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
for module in \
|
for module in \
|
||||||
aria2p \
|
'python-language-server[pyflakes,rope]' \
|
||||||
autorandr \
|
aria2p \
|
||||||
black \
|
autorandr \
|
||||||
docker-compose \
|
black \
|
||||||
esptool \
|
docker-compose \
|
||||||
pipenv \
|
esptool \
|
||||||
platformio \
|
pipenv \
|
||||||
pre-commit \
|
platformio \
|
||||||
xkcdpass \
|
pre-commit \
|
||||||
xq \
|
xkcdpass \
|
||||||
youtube-dl
|
xq \
|
||||||
yq \
|
youtube-dl \
|
||||||
|
yq
|
||||||
do
|
do
|
||||||
pipx install --force "${module}"
|
pipx install "${module}" || true
|
||||||
done
|
done
|
||||||
|
|
Reference in a new issue