mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 21:19:09 -07:00
15 lines
370 B
Bash
Executable File
15 lines
370 B
Bash
Executable File
# Interactive shells only.
|
|
# Should only use POSIX constructs.
|
|
|
|
# Always load ENV
|
|
test -f "$HOME/.env" && . "$HOME/.env"
|
|
|
|
# Setup GREP_COLORS
|
|
export GREP_COLOR='01;31'
|
|
export GREP_COLORS='mt=01;31:mc=01;31:ms=01;31'
|
|
|
|
# Setup LS_COLORS
|
|
test -f "${HOME}/.dircolors" && eval $(dircolors "${HOME}/.dircolors")
|
|
|
|
test -f "${HOME}/.profile.local" && . "${HOME}/.profile.local"
|