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