use GNU stow for setup

This commit is contained in:
Thomas Ruoff
2018-05-09 00:08:38 +02:00
parent 5d78e5848d
commit f9c702ed55
33 changed files with 24 additions and 149 deletions

5
zsh/.zsh/functions/mcd Normal file
View File

@@ -0,0 +1,5 @@
# Make directory and change into it.
function mcd() {
mkdir -p "$1" && cd "$1";
}