您能使用 ls 在 zsh 中为目录加下划线吗?

您能使用 ls 在 zsh 中为目录加下划线吗?

我想在执行 时为目录添加下划线ls。这在默认的 Mac 终端和 zsh 中可以实现吗?或者我需要 iTerm2 + ohmyzsh 之类的东西。我发现LSCOLORS不支持下划线,只支持粗体。

例如:Folder1 和 Folder2 将显示下划线 在此处输入图片描述

答案1

您不需要 iTerm2 + omz。

我建议使用 GNU lsLS_COLORS你可以安装核心工具(通过 homebrew)和alias ls='gls --l --color'

脚步:

  1. brew install coreutils
  2. .zshrc或放入.bash_profile

LS_COLORS='di=01;04'
alias ls='gls --l --color'

相关内容