Added installing ruff

This commit is contained in:
Marcin Woźniak 2024-12-01 23:27:27 +01:00
parent f056acc315
commit 8715e40e31
Signed by: y0rune
GPG Key ID: F204C385F57EB348

View File

@ -116,6 +116,11 @@ function install_pyright() {
$pip install black $PIPEXTPRE $pip install black $PIPEXTPRE
} }
function install_ruff() {
# Install ruff
$pip install ruff $PIPEXTPRE
}
function install_bash-language-server() { function install_bash-language-server() {
# Install bash-language-server # Install bash-language-server
sudo npm -s -g i bash-language-server --force 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_neovim_module_for_python
command_start install_node command_start install_node
command_start install_go command_start install_go
command_start install_pyright # command_start install_pyright
command_start install_ruff
command_start install_lazy command_start install_lazy
command_start install_dlv command_start install_dlv
command_start install_bash-language-server command_start install_bash-language-server