diff options
-rw-r--r-- | README.md | 5 | ||||
-rwxr-xr-x | install.sh | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -5,4 +5,7 @@ This repository contains my configuration files. I use the following programs: + *offlineimap* + *mutt* + *msmtp* to receive, wirte, and send emails. + *zsh* with the *oh-my-zsh* framework as my shell. -All the configuration files can be installed by executing the script install.sh. +All the configuration files can be installed by executing the script install.sh, which can be used to + +- Install, update, and clean git repositories. Thanks to a parallel implementation inspired from [vim-plug](https://github.com/junegunn/vim-plug), this is done efficiently by the script. +- Install copies (symbolic links) of the configuration files in my home directory. @@ -148,7 +148,8 @@ function install_dotfiles { function clean { echo -e "\n*** \e[1mCleaning repositories\e[0m ***" for repo in "${!repodirs[@]}"; do - rm -rfv ${repodirs[$repo]} + echo "Cleaning $repo in ${repodirs[$repo]}" + rm -rf ${repodirs[$repo]} done echo -e "\n*** \e[1mCleaning dotfiles\e[0m ***" |