commit 6c965d96b3c69673fe2c4a764eeab52e0cdf28ef
parent 72769d856c645d49a7b6374c3b4be7b4530efbcc
Author: Chris Bracken <cbracken@google.com>
Date: Mon, 22 Oct 2012 10:45:17 -0700
Renamed .bash_functions to .sh_functions. Use in both bash and zsh.
Diffstat:
3 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/.bashrc b/.bashrc
@@ -77,9 +77,9 @@ fi
if [ -f ~/.colors ]; then
. ~/.colors
fi
-
-if [ -f ~/.bash_functions ]; then
- . ~/.bash_functions
+# functions
+if [ -f ~/.sh_functions ]; then
+ . ~/.sh_functions
fi
# enable programmable completion features (you don't need to enable
diff --git a/.bash_functions b/.sh_functions
diff --git a/.zshrc b/.zshrc
@@ -51,3 +51,8 @@ fi
if [ -f ~/.colors ]; then
. ~/.colors
fi
+
+# functions
+if [ -f ~/.sh_functions ]; then
+ . ~/.sh_functions
+fi