dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

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:
M.bashrc | 6+++---
R.bash_functions -> .sh_functions | 0
M.zshrc | 5+++++
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