From 8715e40e31a00f525f3aca9cd0092f64821c14c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Sun, 1 Dec 2024 23:27:27 +0100 Subject: [PATCH] Added installing ruff --- .local/bin/Update-pkg | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.local/bin/Update-pkg b/.local/bin/Update-pkg index da5f211..4bfe41b 100755 --- a/.local/bin/Update-pkg +++ b/.local/bin/Update-pkg @@ -116,6 +116,11 @@ function install_pyright() { $pip install black $PIPEXTPRE } +function install_ruff() { + # Install ruff + $pip install ruff $PIPEXTPRE +} + function install_bash-language-server() { # Install bash-language-server sudo npm -s -g i bash-language-server --force @@ -421,7 +426,8 @@ function main() { command_start install_neovim_module_for_python command_start install_node command_start install_go - command_start install_pyright + # command_start install_pyright + command_start install_ruff command_start install_lazy command_start install_dlv command_start install_bash-language-server