My Bash config
Go to file
Kolan Sh 4bb45822b3 TERM=screen htop alias. 2013-04-01 10:54:52 +04:00
README Initial commit 2012-05-18 13:46:36 +04:00
alias.sh TERM=screen htop alias. 2013-04-01 10:54:52 +04:00
completion.sh Initial commit 2012-05-18 13:46:36 +04:00
constants.sh Condition for LS_COLORS updated. 2013-03-18 17:20:18 +04:00
funstions.sh Initial commit 2012-05-18 13:46:36 +04:00
prompt.sh Initial commit 2012-05-18 13:46:36 +04:00
scm.sh Initial commit 2012-05-18 13:46:36 +04:00
screen.sh Initial commit 2012-05-18 13:46:36 +04:00
user.sh Initial commit 2012-05-18 13:46:36 +04:00

README

# Create ~/.bash_profile

[[ -f ~/.bashrc ]] && . ~/.bashrc

# Create ~/.bashrc file with contents below.

#!/bin/bash

BDOTDIR=~/.bash

source $BDOTDIR/constants.sh
for rc in $BDOTDIR/*.sh
do
    source $rc
done
unset rc