# Below, there should be one TERM entry for each termtype that is colorizable TERM ansi TERM color_xterm TERM color-xterm TERM con132x25 TERM con132x30 TERM con132x43 TERM con132x60 TERM con80x25 TERM con80x28 TERM con80x30 TERM con80x43 TERM con80x50 TERM con80x60 TERM cons25 TERM console TERM cygwin TERM dtterm TERM dvtm TERM dvtm-256color TERM Eterm TERM eterm-color TERM fbterm TERM gnome TERM gnome-256color TERM jfbterm TERM konsole TERM konsole-256color TERM kterm TERM linux TERM linux-c TERM mach-color TERM mlterm TERM nxterm TERM putty TERM putty-256color TERM rxvt TERM rxvt-256color TERM rxvt-cygwin TERM rxvt-cygwin-native TERM rxvt-unicode TERM rxvt-unicode256 TERM rxvt-unicode-256color TERM screen TERM screen-16color TERM screen-16color-bce TERM screen-16color-s TERM screen-16color-bce-s TERM screen-256color TERM screen-256color-bce TERM screen-256color-s TERM screen-256color-bce-s TERM screen-256color-italic TERM screen-bce TERM screen-w TERM screen.linux TERM screen.xterm-256color TERM screen.xterm-new TERM st TERM st-meta TERM st-256color TERM st-meta-256color TERM vt100 TERM xterm TERM xterm-new TERM xterm-16color TERM xterm-256color TERM xterm-256color-italic TERM xterm-88color TERM xterm-color TERM xterm-debian TERM xterm-termite
# EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output) EIGHTBIT 1
############################################################################# # Below are the color init strings for the basic file types. A color init # string consists of one or more of the following numeric codes: # # Attribute codes: # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed # Text color codes: # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white # Background color codes: # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white # # NOTES: # - See http://www.oreilly.com/catalog/wdnut/excerpt/color_names.html # - Color combinations # ANSI Color code Solarized Notes Universal SolDark SolLight # ~~~~~~~~~~~~~~~ ~~~~~~~~~ ~~~~~ ~~~~~~~~~ ~~~~~~~ ~~~~~~~~ # 00 none NORMAL, FILE <SAME> <SAME> # 30 black base02 # 01;30 bright black base03 bg of SolDark # 31 red red docs & mm src <SAME> <SAME> # 01;31 bright red orange EXEC <SAME> <SAME> # 32 green green editable text <SAME> <SAME> # 01;32 bright green base01 unimportant text <SAME> # 33 yellow yellow unclear in light bg multimedia <SAME> <SAME> # 01;33 bright yellow base00 fg of SolLight unimportant non-text # 34 blue blue unclear in dark bg user customized <SAME> <SAME> # 01;34 bright blue base0 fg in SolDark unimportant text # 35 magenta magenta LINK <SAME> <SAME> # 01;35 bright magenta violet archive/compressed <SAME> <SAME> # 36 cyan cyan DIR <SAME> <SAME> # 01;36 bright cyan base1 unimportant non-text <SAME> # 37 white base2 # 01;37 bright white base3 bg in SolLight # 05;37;41 unclear in Putty dark
### By file type
# global default NORMAL 00 # normal file FILE 00 # directory DIR 34 # 777 directory OTHER_WRITABLE 34;40 # symbolic link LINK 35
# pipe, socket, block device, character device (blue bg) FIFO 30;44 SOCK 35;44 DOOR 35;44 # Solaris 2.5 and later BLK 33;44 CHR 37;44
############################################################################# ### By file attributes
# Orphaned symlinks (blinking white on red) # Blink may or may not work (works on iTerm dark or light, and Putty dark) ORPHAN 05;37;41 # ... and the files that orphaned symlinks point to (blinking white on red) MISSING 05;37;41
############################################################################# ### By extension
# List any file extensions like '.gz' or '.tar' that you would like ls # to colorize below. Put the extension, a space, and the color init string. # (and any comments you want to add after a '#')
### Text formats
# Text that we can edit with a regular editor .txt 32 .org 32 .md 32 .mkd 32
############################################################################# # Your customizations
# Unimportant text files # For universal scheme, use brightgreen 01;32 # For optimal on light bg (but too prominent on dark bg), use white 01;34 .log 01;32 *~ 01;32 *# 01;32 #.log 01;34 #*~ 01;34 #*# 01;34
# The brightmagenta (Solarized: purple) color is free for you to use for your # custom file type .gpg 34 .gpg 34 .pgp 34 .asc 34 .3des 34 .aes 34 .enc 34 .sqlite 34
# enable color support of ls and also add handy aliases if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval"$(dircolors -b ~/.dircolors)" || eval"$(dircolors -b)" aliasls='ls --color=auto' #alias dir='dir --color=auto' #alias vdir='vdir --color=auto' alias grep='grep --color=auto' alias fgrep='fgrep --color=auto' alias egrep='egrep --color=auto' fi # some more ls aliases alias ll='ls -alF' alias la='ls -A' alias l='ls -CF'