From 53eaacdc9f00f06d1f592f121e7df273d74241b7 Mon Sep 17 00:00:00 2001
From: Sergey Matveev <stargrave@stargrave.org>
Date: Tue, 29 Mar 2022 23:23:01 +0300
Subject: [PATCH] More descriptive LSCOLORS

---
 zsh/.zsh/env/005ls.zsh | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

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}
-- 
2.51.0