dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit 2d6eacfa59c6b04173fd41c8de255e2d1e24652d
parent b2171b4ad628ea0a6f52fd6468e19b42dc76dc51
Author: dudley <pyratebeard@gmail.com>
Date:   Fri, 18 Nov 2016 12:10:28 +0000

new bashrc file

Diffstat:
Abash/.bashrc | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/bash/.bashrc b/bash/.bashrc @@ -0,0 +1,12 @@ +# .bashrc + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc + +# User specific aliases and functions + +function cd { + builtin cd "$@" && ls -l --color=auto +} +