12 lines
462 B
12 lines
462 B
# Directory colors - note OS X does not use coreutils so dircolors doesn't work. |
|
export CLICOLOR=YES |
|
|
|
# Custom directory colors |
|
# Ex = Directory color - Bold blue, normal background (to match the $PS1 line) |
|
# bx = Symlink color - Red, normal background |
|
# Cx = Socket color - Bold green, normal background |
|
# dx = Pipe color - Default |
|
# Gx = Executable color - bold cyan |
|
# The rest are default colors taken from `man ls` |
|
|
|
export LSCOLORS="ExbxCxdxGxegedabagacad"
|
|
|