From 39bc9252d6f2712e4b20f9e2b764c33d2ffc6cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Sun, 8 Dec 2024 20:00:30 +0100 Subject: [PATCH] Update-pkg: install_mdformat --- .local/bin/Update-pkg | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.local/bin/Update-pkg b/.local/bin/Update-pkg index 34df72c..b954533 100755 --- a/.local/bin/Update-pkg +++ b/.local/bin/Update-pkg @@ -116,6 +116,11 @@ function install_pyright() { $pip install black $PIPEXTPRE } +function install_mdformat() { + # Install mdformat + $pip install mdformat $PIPEXTPRE +} + function install_ruff() { # Install ruff $pip install ruff $PIPEXTPRE @@ -427,6 +432,7 @@ function main() { command_start install_node command_start install_go # command_start install_pyright + command_start install_mdformat command_start install_ruff command_start install_lazy command_start install_dlv