diff --git a/install.sh b/install.sh index 0bcb71e..6de63b2 100755 --- a/install.sh +++ b/install.sh @@ -134,7 +134,7 @@ brew_sync() { fi if [[ ${choice} == "y" ]]; then for app in ${missing_apps}; do - brew uninstall "${app}" + brew uninstall --zap "${app}" echo -e "🚮 \033[1;35mUninstalled ${app}.\033[0m" done else diff --git a/linkme/.zshrc b/linkme/.zshrc index dba4517..a352326 100644 --- a/linkme/.zshrc +++ b/linkme/.zshrc @@ -10,18 +10,6 @@ if [ ! -d "$ZSH" ]; then sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" fi -# Set name of the theme to load --- if set to "random", it will -# load a random theme each time oh-my-zsh is loaded, in which case, -# to know which specific one was loaded, run: echo $RANDOM_THEME -# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes -ZSH_THEME="robbyrussell" - -# Set list of themes to pick from when loading at random -# Setting this variable when ZSH_THEME=random will cause zsh to load -# a theme from this variable instead of looking in $ZSH/themes/ -# If set to an empty array, this variable will have no effect. -# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) - # Uncomment the following line to use case-sensitive completion. # CASE_SENSITIVE="true"