1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Add python formatter black

jdhao 2019-12-24 23:34:27 +08:00
parent a948425aa2
commit 620e9c85e8

@ -64,10 +64,10 @@ if [[ "$SYSTEM_PYTHON" = true ]]; then
# If we use system Python, we need to install these Python packages under user HOME,
# since we do not have permission to install them under system directories.
pip install --user pynvim pylint jedi flake8
pip install --user pynvim pylint jedi flake8 black
else
echo "Using custom Python"
pip install pynvim pylint jedi flake8
pip install pynvim pylint jedi flake8 black
fi