Initialize all dem dotfiles

This commit is contained in:
2017-07-30 00:04:04 -05:00
commit e640735254
27 changed files with 1832 additions and 0 deletions

20
.bin/.bashrc-global Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Source /etc/profile
source /etc/profile
# Source .profile
if [ -f ~/.profile ]; then
source ~/.profile
fi
# Source the bash-specific rc
if [ -f ~/.bin/bashrc.sh ]; then
source ~/.bin/bashrc.sh
fi