├── .gitignore ├── LICENSE ├── README.md ├── functions ├── color ├── lscolor └── zcolors └── zcolors.plugin.zsh /.gitignore: -------------------------------------------------------------------------------- 1 | *.zwc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonrichert/zcolors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonrichert/zcolors/HEAD/README.md -------------------------------------------------------------------------------- /functions/color: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | print -r - $'\e['"${(vj.;.)color[(I)(${(~j.|.)@})]}m" 3 | -------------------------------------------------------------------------------- /functions/lscolor: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | print -nr - $'\e['${ls_colors[(R)$1=*]#$1=}m 3 | -------------------------------------------------------------------------------- /functions/zcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonrichert/zcolors/HEAD/functions/zcolors -------------------------------------------------------------------------------- /zcolors.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonrichert/zcolors/HEAD/zcolors.plugin.zsh --------------------------------------------------------------------------------