My zsh config made from scratch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
491 B

LS_COLORS="di=01;34" #directory color
LS_COLORS=$LS_COLORS":ln=01;36" #link color
LS_COLORS=$LS_COLORS":so=01;35" #socket color
LS_COLORS=$LS_COLORS":pi=40;33" #pipe color
LS_COLORS=$LS_COLORS":ex=32" #executable color
LS_COLORS=$LS_COLORS":bd=40;33" #block device color
LS_COLORS=$LS_COLORS":cd=40;33;01" #char device color
LS_COLORS=$LS_COLORS":su=37;41" #setuid executable color (i.e. sudo)
LS_COLORS=$LS_COLORS":sg=30;43" #setgid executable color
export LS_COLORS
alias ls="ls --color"