dotfiles

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

commit d1245e8298e567fcc159333916a9b6f9533760f2
parent a398cb4f4fe23f0f8250aeab04cefd02dd1387da
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed, 11 Mar 2015 18:59:47 -0700

Add .tools for third-party sourced stuff.

Diffstat:
M.bashrc | 4++++
A.tools | 2++
M.zshrc | 5+++++
3 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/.bashrc b/.bashrc @@ -89,6 +89,10 @@ fi if [ -f ~/.sh_functions ]; then . ~/.sh_functions fi +# tools +if [ -f ~/.tools ]; then + . ~/.tools +fi # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile diff --git a/.tools b/.tools @@ -0,0 +1,2 @@ +# -*- mode: shell-script; -*- vim: set filetype=sh +# ~/.tools diff --git a/.zshrc b/.zshrc @@ -73,3 +73,8 @@ fi if [ -f ~/.sh_functions ]; then . ~/.sh_functions fi + +# tools +if [ -f ~/.tools ]; then + . ~/.tools +fi