@@ -65,7 +65,11 @@ function show_apps {
if [[ ${APPS_INSTALLED[$app_index]} == "0" && "$select_all_apps" != "add-all" ]]; then
applist="$applist $n $a off"
else
- applist="$applist $n $a on"
+ if [[ "$a" == "vim" && "$select_all_apps" == "add-all" ]]; then
+ applist="$applist $n $a off"
+ else
+ applist="$applist $n $a on"
+ fi
fi
n=$[n+1]
app_index=$[app_index+1]