因此,我知道可能有很多关于此的帖子,但是我找不到我需要的帖子,或者我的终端讨厌我。我正在尝试在OSX的iterm2上使用zsh shell对ls的输出进行颜色设置。
我尝试使用别名“ alias ls ='ls -laGH'”和许多变体,但这没有用。 我尝试在zshrc中使用LS_COLORS进行许多更改,但没有成功。 我已经尝试了几个小时来安装此https://github.com/trapd00r/LS_COLORS并没有成功(当然还安装了zplugin)。
我的预测是,由于已经实现的颜色或主题没有作用,但是优先于别名或GitHub存储库?
任何帮助将不胜感激!
这是当前的.zshrc:
# Load Nerd Fonts with Powerlevel9k theme for Zsh
POWERLEVEL9K_MODE='nerdfont-complete'
source ~/powerlevel9k/powerlevel9k.zsh-theme
# Customise the Powerlevel9k prompts
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh dir vcs newline status)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(time ram dir_writable)
POWERLEVEL9K_PROMPT_ADD_NEWLINE=true
# Load Zsh tools for syntax highlighting and autosuggestions
HOMEBREW_FOLDER="/usr/local/share"
source "$HOMEBREW_FOLDER/zsh-autosuggestions/zsh-autosuggestions.zsh"
# Colorise the top Tabs of Iterm2 with the same color as background
# Just change the 18/26/33 wich are the rgb values
echo -ne "\033]6;1;bg;red;brightness;18\a"
echo -ne "\033]6;1;bg;green;brightness;26\a"
echo -ne "\033]6;1;bg;blue;brightness;33\a"
# Aliases for list commands with colorful output
alias ls='ls -laGH'
alias add='git add * ; git status'
source '/Users/christianquinn/.zplugin/plugins/trapd00r---LS_COLORS/c.zsh'
source "$HOMEBREW_FOLDER/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
### Added by Zplugin's installer
source '/Users/christianquinn/.zplugin/bin/zplugin.zsh'
autoload -Uz _zplugin
(( ${+_comps} )) && _comps[zplugin]=_zplugin
### End of Zplugin's installer chunk
答案 0 :(得分:0)
可变色ls
输出的输出取决于所使用的操作系统。
在macOS(或基于BSD的系统)上,您必须配置LSCOLORS
变量,例如
export LSCOLORS="Gxfxcxdxbxegedabagacab"
对于GNU,请配置LS_COLORS
变量
export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:ow=0;41:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.patch=00;34:*.o=00;32:*.so=01;35:*.ko=01;31:*.la=00;33'
有诸如geoff.greer.fm/lscolors之类的自定义颜色生成器,可以帮助您微调所需的颜色。尽管trapd00r/LS_COLORS之类的插件为更大的文件类型集提供了颜色。