From 12ca3baa0afd399f2d38179847cbec47917e4475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Mon, 21 Nov 2022 22:21:28 +0100 Subject: [PATCH] Added into installer the neovim and black (pre) --- .config/nvim/installer.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.config/nvim/installer.sh b/.config/nvim/installer.sh index f93c202..10caf5c 100755 --- a/.config/nvim/installer.sh +++ b/.config/nvim/installer.sh @@ -20,6 +20,10 @@ function update_pip() { python3 -m pip install --upgrade pip --user } +function install_neovim_module_for_python() { + pip3 install neovim --pre --user --force +} + function install_pyright() { # Install pyright sudo npm -g i pyright --force @@ -53,8 +57,8 @@ function install_gopls() { function install_black() { # Install black - pip install black --user - pip3 install black --user --force + pip install black --pre --user --force + pip3 install black --pre --user --force } function install_ansible() {