added some zsh plugins
This commit is contained in:
parent
0ef3bd7a55
commit
3a44873f3a
14 changed files with 209 additions and 14 deletions
9
dot_files.zsh
Normal file
9
dot_files.zsh
Normal file
|
@ -0,0 +1,9 @@
|
|||
function find_dot_files() {
|
||||
find . -name '.DS_Store';
|
||||
find . -name '._*';
|
||||
}
|
||||
|
||||
function clean_dot_files() {
|
||||
find . -name '.DS_Store' -type f -delete;
|
||||
find . -name '._*' -type f -delete
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue