8 lines
171 B
Bash
Executable File
8 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
git submodule update --init --recursive
|
|
|
|
if [ -x "$(command -v pip3)" ]; then
|
|
pip3 install --user pynvim
|
|
pip3 install --user python-language-server
|
|
fi
|