From cf2beda57a11e1fe4d6b12275d48c28cd6971ff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Fri, 24 Mar 2023 11:52:42 +0100 Subject: [PATCH] Added comments in the installer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Woźniak --- .config/nvim/installer.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/nvim/installer.sh b/.config/nvim/installer.sh index e8f8662..b5e61af 100755 --- a/.config/nvim/installer.sh +++ b/.config/nvim/installer.sh @@ -18,10 +18,12 @@ function command_start() { } function update_pip() { + # Update the pip python3 -m pip install --upgrade pip --user } function install_neovim_module_for_python() { + # Python module in neovim pip3 install neovim --pre --user --force } @@ -86,6 +88,7 @@ function install_black() { } function install_ansible() { + # Install Ansible pip3 install --pre --user ansible ansible-lint ansible-core --force } @@ -96,15 +99,18 @@ function install_ansible-language-server() { } function install_meraki_ansible() { + # Install python, ansible module for meraki ansible-galaxy collection install cisco.meraki --force pip3 install meraki --user --force } function install_azure_cli() { + # Install azure_cli pip3 install azure-cli --user --pre --force } function install_awscli() { + # Install awscli pip3 install awscli --pre --user --force }