diff options
author | Marc Cornellà <hello@mcornella.com> | 2023-03-12 15:47:58 +0100 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2023-03-12 15:47:58 +0100 |
commit | 72732a224e886933df6b64a49ec6f5e94c884612 (patch) | |
tree | 76a793e014200cb9bcbb12226d8c1f759277eb90 | |
parent | 92387d9fff83934a8628697a4397a65030f0301e (diff) | |
download | zsh-72732a224e886933df6b64a49ec6f5e94c884612.tar.gz zsh-72732a224e886933df6b64a49ec6f5e94c884612.tar.bz2 zsh-72732a224e886933df6b64a49ec6f5e94c884612.zip |
fix(lib): set equivalent LS_COLORS and LSCOLORS variables
As reported by https://geoff.greer.fm/lscolors
Fixes #11554
-rw-r--r-- | lib/theme-and-appearance.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/theme-and-appearance.zsh b/lib/theme-and-appearance.zsh index e245570e3..d8859b04c 100644 --- a/lib/theme-and-appearance.zsh +++ b/lib/theme-and-appearance.zsh @@ -78,6 +78,6 @@ if [[ -z "$LS_COLORS" ]]; then && source <(dircolors -b "$HOME/.dircolors") \ || source <(dircolors -b) else - export LS_COLORS="di=34:ln=35:so=32:pi=33:ex=31:bd=34;46:cd=34;43:su=37;41:sg=30;43:tw=30;42:ow=34;42:" + export LS_COLORS="di=1;36:ln=35:so=32:pi=33:ex=31:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43" fi fi |