blob: 64c978f4fa1690bd57bb26ce4832833002db6f08 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
find "$PWD" -maxdepth 1 \
-name '.*' \
-not -name .git \
-not -name .DS_Store \
-not -name .gitignore \
-exec sh -c 'rm $HOME/$(basename "$1")' sh {} \;
rm -f .vim/pack/plugins/start/*
|