ef911aacb7
--HG-- rename : aliases => aliases.zsh rename : completion => completion.zsh rename : functions => functions.zsh rename : options => options.zsh rename : prompt => prompt.zsh
37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
#! /bin/zsh
|
||
# A script to make using 256 colors in zsh less painful.
|
||
# P.C. Shyamshankar <sykora@lucentbeing.com>
|
||
# Copied from http://github.com/sykora/etc/blob/master/zsh/functions/spectrum/
|
||
|
||
typeset -Ag FX FG BG
|
||
|
||
FX=(
|
||
reset "%{[00m%}"
|
||
bold "%{[01m%}" no-bold "%{[22m%}"
|
||
italic "%{[03m%}" no-italic "%{[23m%}"
|
||
underline "%{[04m%}" no-underline "%{[24m%}"
|
||
blink "%{[05m%}" no-blink "%{[25m%}"
|
||
reverse "%{[07m%}" no-reverse "%{[27m%}"
|
||
)
|
||
|
||
for color in {000..255}; do
|
||
FG[$color]="%{[38;5;${color}m%}"
|
||
BG[$color]="%{[48;5;${color}m%}"
|
||
done
|
||
|
||
|
||
# See if we can use colors.
|
||
# Original from Phil Gold at http://aperiodic.net/phil/prompt/
|
||
autoload colors zsh/terminfo
|
||
if [[ "$terminfo[colors]" -ge 8 ]]; then
|
||
colors
|
||
fi
|
||
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
|
||
eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
|
||
eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
|
||
(( count = $count + 1 ))
|
||
done
|
||
PR_NO_COLOR="%{$terminfo[sgr0]%}"
|
||
|
||
|