diff --git a/dot/file/gitconfig b/dot/file/gitconfig
index 4dec70d..03e1201 100644
--- a/dot/file/gitconfig
+++ b/dot/file/gitconfig
@@ -18,5 +18,9 @@
 	pl = pull
 	fc = fetch
 	lg = log
+	stsh = stash
 	type = cat-file -t
 	dump = cat-file -p
+[core]
+	autocrlf = input
+
diff --git a/profile b/profile
index d03441f..f0be738 100644
--- a/profile
+++ b/profile
@@ -169,6 +169,10 @@ fn q {
 	exit
 }
 
+fn g {
+	9grep $*
+}
+
 fn uprofile {
 	. $profile
 }
@@ -192,6 +196,18 @@ fn m {
 	}
 }
 
+fn rmr {
+	rm -r $*
+}
+
+fn rmf {
+	rm -r -f $*
+}
+
+fn cpr {
+	cp -r $*
+}
+
 fn psagrep {
 	ps -A | grep $*
 }