dotfiles

my dotfiles.
Log | Files | Refs | README | LICENSE

dircolors (4855B)


      1 # Configuration file for dircolors, a utility to help you set the
      2 # LS_COLORS environment variable used by GNU ls with the --color option.
      3 
      4 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
      5 # Copying and distribution of this file, with or without modification,
      6 # are permitted provided the copyright notice and this notice are preserved.
      7 
      8 # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
      9 # slackware version of dircolors) are recognized but ignored.
     10 
     11 # You can copy this file to .dir_colors in your $HOME directory to override
     12 # the system defaults.
     13 
     14 # Below, there should be one TERM entry for each termtype that is colorizable
     15 TERM Eterm
     16 TERM ansi
     17 TERM color-xterm
     18 TERM con132x25
     19 TERM con132x30
     20 TERM con132x43
     21 TERM con132x60
     22 TERM con80x25
     23 TERM con80x28
     24 TERM con80x30
     25 TERM con80x43
     26 TERM con80x50
     27 TERM con80x60
     28 TERM cons25
     29 TERM console
     30 TERM cygwin
     31 TERM dtterm
     32 TERM eterm-color
     33 TERM gnome
     34 TERM gnome-256color
     35 TERM hurd
     36 TERM jfbterm
     37 TERM konsole
     38 TERM kterm
     39 TERM linux
     40 TERM linux-c
     41 TERM mach-color
     42 TERM mach-gnu-color
     43 TERM mlterm
     44 TERM putty
     45 TERM putty-256color
     46 TERM rxvt
     47 TERM rxvt-256color
     48 TERM rxvt-cygwin
     49 TERM rxvt-cygwin-native
     50 TERM rxvt-unicode
     51 TERM rxvt-unicode-256color
     52 TERM rxvt-unicode256
     53 TERM screen
     54 TERM screen-256color
     55 TERM screen-256color-bce
     56 TERM screen-bce
     57 TERM screen-w
     58 TERM screen.Eterm
     59 TERM screen.rxvt
     60 TERM screen.linux
     61 TERM st
     62 TERM st-256color
     63 TERM terminator
     64 TERM vt100
     65 TERM xterm
     66 TERM xterm-16color
     67 TERM xterm-256color
     68 TERM xterm-88color
     69 TERM xterm-color
     70 TERM xterm-debian
     71 
     72 # Below are the color init strings for the basic file types. A color init
     73 # string consists of one or more of the following numeric codes:
     74 # Attribute codes:
     75 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
     76 # Text color codes:
     77 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
     78 # Background color codes:
     79 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
     80 #NORMAL 00	# no color code at all
     81 #FILE 00	# regular file: use no color at all
     82 RESET 0		# reset to "normal" color
     83 DIR 01;34	# directory
     84 LINK 01;36	# symbolic link.  (If you set this to 'target' instead of a
     85                 # numerical value, the color is as for the file pointed to.)
     86 MULTIHARDLINK 00	# regular file with more than one link
     87 FIFO 40;33	# pipe
     88 SOCK 01;35	# socket
     89 DOOR 01;35	# door
     90 BLK 40;33;01	# block device driver
     91 CHR 40;33;01	# character device driver
     92 ORPHAN 01;05;37;41  # orphaned syminks
     93 MISSING 01;05;37;41 # ... and the files they point to
     94 SETUID 37;41	# file that is setuid (u+s)
     95 SETGID 30;43	# file that is setgid (g+s)
     96 CAPABILITY 30;41	# file with capability
     97 STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
     98 OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
     99 STICKY 37;44	# dir with the sticky bit set (+t) and not other-writable
    100 
    101 # This is for files with execute permission:
    102 EXEC 01;32
    103 
    104 # List any file extensions like '.gz' or '.tar' that you would like ls
    105 # to colorize below. Put the extension, a space, and the color init string.
    106 # (and any comments you want to add after a '#')
    107 
    108 # If you use DOS-style suffixes, you may want to uncomment the following:
    109 #.cmd 01;32 # executables (bright green)
    110 #.exe 01;32
    111 #.com 01;32
    112 #.btm 01;32
    113 #.bat 01;32
    114 # Or if you want to colorize scripts even if they do not have the
    115 # executable bit actually set.
    116 #.sh  01;32
    117 #.csh 01;32
    118 
    119  # archives or compressed (bright red)
    120 .tar 01;31
    121 .tgz 01;31
    122 .arc 01;31
    123 .arj 01;31
    124 .taz 01;31
    125 .lha 01;31
    126 .lz4 01;31
    127 .lzh 01;31
    128 .lzma 01;31
    129 .tlz 01;31
    130 .txz 01;31
    131 .tzo 01;31
    132 .t7z 01;31
    133 .zip 01;31
    134 .z   01;31
    135 .Z   01;31
    136 .dz  01;31
    137 .gz  01;31
    138 .lrz 01;31
    139 .lz  01;31
    140 .lzo 01;31
    141 .xz  01;31
    142 .bz2 01;31
    143 .bz  01;31
    144 .tbz 01;31
    145 .tbz2 01;31
    146 .tz  01;31
    147 .deb 01;31
    148 .rpm 01;31
    149 .jar 01;31
    150 .war 01;31
    151 .ear 01;31
    152 .sar 01;31
    153 .rar 01;31
    154 .alz 01;31
    155 .ace 01;31
    156 .zoo 01;31
    157 .cpio 01;31
    158 .7z  01;31
    159 .rz  01;31
    160 .cab 01;31
    161 
    162 # image formats
    163 .jpg 01;35
    164 .jpeg 01;35
    165 .gif 01;35
    166 .bmp 01;35
    167 .pbm 01;35
    168 .pgm 01;35
    169 .ppm 01;35
    170 .tga 01;35
    171 .xbm 01;35
    172 .xpm 01;35
    173 .tif 01;35
    174 .tiff 01;35
    175 .png 01;35
    176 .svg 01;35
    177 .svgz 01;35
    178 .mng 01;35
    179 .pcx 01;35
    180 .mov 01;35
    181 .mpg 01;35
    182 .mpeg 01;35
    183 .m2v 01;35
    184 .mkv 01;35
    185 .webm 01;35
    186 .ogm 01;35
    187 .mp4 01;35
    188 .m4v 01;35
    189 .mp4v 01;35
    190 .vob 01;35
    191 .qt  01;35
    192 .nuv 01;35
    193 .wmv 01;35
    194 .asf 01;35
    195 .rm  01;35
    196 .rmvb 01;35
    197 .flc 01;35
    198 .avi 01;35
    199 .fli 01;35
    200 .flv 01;35
    201 .gl 01;35
    202 .dl 01;35
    203 .xcf 01;35
    204 .xwd 01;35
    205 .yuv 01;35
    206 .cgm 01;35
    207 .emf 01;35
    208 
    209 # http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
    210 .axv 01;35
    211 .anx 01;35
    212 .ogv 01;35
    213 .ogx 01;35
    214 
    215 # Document files
    216 .pdf 00;32
    217 .ps 00;32
    218 .txt 00;32
    219 .patch 00;32
    220 .diff 00;32
    221 .log 00;32
    222 .tex 00;32
    223 .doc 00;32
    224 
    225 # audio formats
    226 .aac 00;36
    227 .au 00;36
    228 .flac 00;36
    229 .m4a 00;36
    230 .mid 00;36
    231 .midi 00;36
    232 .mka 00;36
    233 .mp3 00;36
    234 .mpc 00;36
    235 .ogg 00;36
    236 .ra 00;36
    237 .wav 00;36
    238 
    239 # http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
    240 .axa 00;36
    241 .oga 00;36
    242 .spx 00;36
    243 .xspf 00;36