From 5ed892fe7f698df7bce11714d0af9735ff455fe6 Mon Sep 17 00:00:00 2001 From: Wang Shidong Date: Sat, 21 Aug 2021 14:16:41 +0800 Subject: [PATCH] Add --no-fonts option (#4415) close #4354 --- docs/install.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/install.sh b/docs/install.sh index e8d7f81b7..76d51e7ba 100755 --- a/docs/install.sh +++ b/docs/install.sh @@ -287,6 +287,7 @@ usage () { echo " -v, --version Show version information and exit" echo " -u, --uninstall Uninstall SpaceVim" echo " -c, --checkRequirements checkRequirements for SpaceVim" + echo " --no-fonts skip downloading fonts" echo "" echo "EXAMPLE" echo "" @@ -438,6 +439,16 @@ main () { usage exit 0 ;; + --no-fonts) + welcome + need_cmd 'git' + fetch_repo + install_vim + install_neovim + install_package_manager + install_done + exit 0 + ;; --version|-v) msg "${Version}" exit 0