summaryrefslogtreecommitdiff
path: root/dev-env
diff options
context:
space:
mode:
Diffstat (limited to 'dev-env')
-rwxr-xr-xdev-env7
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-env b/dev-env
index 06e5055..d274d74 100755
--- a/dev-env
+++ b/dev-env
@@ -22,8 +22,13 @@ for script in $scripts; do
copy_file "$script" "$target/bin"
done
+configs="$(find ./.config -mindepth 1 -maxdepth 1 -type d)"
+for config in $configs; do
+ log $config
+ copy_dir $config "$HOME/.config"
+done
+
log "Copying Configs"
-copy_dir .config $HOME
copy_dir .emacs.d $HOME
copy_file ".config/.profile" $HOME
copy_file ".config/shells/zsh/.zshrc" $HOME