diff --git a/README b/README index e69de29..1e3fad8 100644 --- a/README +++ b/README @@ -0,0 +1,5 @@ +First get git submodule: +git submodule update --init + +Then install_config.sh will produce a list of link to copy/past in a terminal. This allow you to select the config files you want + diff --git a/install_config.sh b/install_config.sh index 77febb4..cb1ac2d 100755 --- a/install_config.sh +++ b/install_config.sh @@ -1,6 +1,6 @@ #!/bin/bash -for i in $(ls -A| grep -e "^\."| grep -v "git"|grep -v "swp") +for i in $(ls -A| grep -e "^\."| grep -v ".git$" |grep -v "swp") do echo "ln -s $PWD/$i $HOME/$i" done