From 620e9c85e8529cec0c01e54036791f36e5dceafd Mon Sep 17 00:00:00 2001 From: jdhao Date: Tue, 24 Dec 2019 23:34:27 +0800 Subject: [PATCH] Add python formatter black --- Nvim-setup-in-Linux.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Nvim-setup-in-Linux.md b/Nvim-setup-in-Linux.md index e2c2d8c..c164cb9 100644 --- a/Nvim-setup-in-Linux.md +++ b/Nvim-setup-in-Linux.md @@ -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