From: Sergey Matveev Date: Tue, 29 Mar 2022 20:23:01 +0000 (+0300) Subject: More descriptive LSCOLORS X-Git-Url: http://www.git.stargrave.org/?p=dotfiles.git;a=commitdiff_plain;h=53eaacdc9f00f06d1f592f121e7df273d74241b7 More descriptive LSCOLORS --- diff --git a/zsh/.zsh/env/005ls.zsh b/zsh/.zsh/env/005ls.zsh index eb6174a..c75866e 100644 --- a/zsh/.zsh/env/005ls.zsh +++ b/zsh/.zsh/env/005ls.zsh @@ -1,2 +1,15 @@ export CLICOLOR=1 -export LSCOLORS=BxGxcxdxCxegDxabagacad +lscolors=( + Bx # ex # directory + Gx # fx # symbolic link + cx # cx # socket + dx # dx # pipe + Cx # bx # executable + eg # eg # block special + Dx # ed # character special + ab # ab # executable with setuid bit set + ag # ag # executable with setgid bit set + ac # ac # directory writable to others, with sticky bit + ad # ad # directory writable to others, without sticky bit +) +export LSCOLORS=${(j::)lscolors}