better headers, horizontal section delimiter

This commit is contained in:
Ryan Delaney 2014-03-24 10:51:38 -07:00
parent e928400113
commit 6e0d43ce4b
No known key found for this signature in database
GPG Key ID: 0D98863B4E1D07B6
1 changed files with 48 additions and 13 deletions

View File

@ -20,6 +20,7 @@
# try to pick colors that fit nicely together. Filetypes with multiple # try to pick colors that fit nicely together. Filetypes with multiple
# possible extensions, like htm and html, should have the same color. # possible extensions, like htm and html, should have the same color.
# //////////////////////////////////////////////
BLK 38;5;68 BLK 38;5;68
CAPABILITY 38;5;17 CAPABILITY 38;5;17
CHR 38;5;113;1 CHR 38;5;113;1
@ -43,16 +44,17 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
*LS_COLORS 48;5;89;38;5;197;1;3;4;7 # :-) *LS_COLORS 48;5;89;38;5;197;1;3;4;7 # :-)
# //////////////////////////////////////////////
# code, text, documents # code, text, documents
.asm 38;5;240;1 .asm 38;5;240;1
.cfg 1 .cfg 1
.cl 38;5;204;1
.coffee 38;5;94;1 .coffee 38;5;94;1
.conf 1 .conf 1
.ctp 38;5;95 .ctp 38;5;95
.ex 38;5;148;1 .ex 38;5;148;1
.example 38;5;225;1 .example 38;5;225;1
.rc 1 .rc 1
# //////////////////////////////////////////////
# documents: markup language, plain-text # documents: markup language, plain-text
.csv 38;5;78 .csv 38;5;78
.etx 38;5;172 .etx 38;5;172
@ -60,6 +62,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.md 38;5;184 .md 38;5;184
.mkd 38;5;184 .mkd 38;5;184
.tex 38;5;172 .tex 38;5;172
# //////////////////////////////////////////////
# documents: compiled, binary # documents: compiled, binary
.cbr 38;5;140 .cbr 38;5;140
.cbz 38;5;140 .cbz 38;5;140
@ -81,10 +84,12 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.xlsxm 38;5;112;4 .xlsxm 38;5;112;4
.xltm 38;5;73;4 .xltm 38;5;73;4
.xltx 38;5;73 .xltx 38;5;73
# //////////////////////////////////////////////
# version control # version control
.git 38;5;197 .git 38;5;197
.gitignore 38;5;240 .gitignore 38;5;240
.gitattributes 38;5;240 .gitattributes 38;5;240
# //////////////////////////////////////////////
# shell scripts # shell scripts
.BAT 38;5;108 .BAT 38;5;108
.awk 38;5;148;1 .awk 38;5;148;1
@ -92,39 +97,58 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.bat 38;5;108 .bat 38;5;108
.sed 38;5;130;1 .sed 38;5;130;1
.sh 38;5;113 .sh 38;5;113
# //////////////////////////////////////////////
# interpreted procedural languages # interpreted procedural languages
.ahk 38;5;29;1 .ahk 38;5;29;1
.py 38;5;41 .py 38;5;41
.pgsql 38;5;222 .pgsql 38;5;222
.sql 38;5;222 .sql 38;5;222
# //////////////////////////////////////////////
# compiled procedural languages # compiled procedural languages
#
# LISP
.cl 38;5;204;1
# C
.c 38;5;110 .c 38;5;110
.C 38;5;24;1
.h 38;5;81
.H 38;5;81
.tcc 38;5;81
# C++
.c++ 38;5;24;1
.h++ 38;5;81
.hpp 38;5;81
.hxx 38;5;81
.ii 38;5;24;1
# Csharp
.cc 38;5;24;1 .cc 38;5;24;1
.cs 38;5;74;1 .cs 38;5;74;1
.C 38;5;24;1
.cp 38;5;24;1 .cp 38;5;24;1
.cpp 38;5;24;1 .cpp 38;5;24;1
.cxx 38;5;24;1 .cxx 38;5;24;1
.c++ 38;5;24;1 # fortran
.h 38;5;81
.H 38;5;81
.hpp 38;5;81
.hxx 38;5;81
.h++ 38;5;81
.ii 38;5;24;1
.tcc 38;5;81
.f 38;5;81 .f 38;5;81
.for 38;5;81 .for 38;5;81
.ftn 38;5;81 .ftn 38;5;81
# pascal
.s 38;5;81 .s 38;5;81
.S 38;5;81 .S 38;5;81
# ?
.sx 38;5;81 .sx 38;5;81
# interface file in GHC - https://github.com/trapd00r/LS_COLORS/pull/9
.hi 38;5;240
# haskell
.hs 38;5;155;1
# //////////////////////////////////////////////
# compiled binaries for procedural languages # compiled binaries for procedural languages
#
.PL 38;5;160 .PL 38;5;160
.pyc 38;5;240 .pyc 38;5;240
# //////////////////////////////////////////////
# patch files # patch files
.diff 48;5;197;38;5;232 .diff 48;5;197;38;5;232
.patch 48;5;197;38;5;232;1 .patch 48;5;197;38;5;232;1
# //////////////////////////////////////////////
# Encrypted data # Encrypted data
.gpg 38;5;192;3 .gpg 38;5;192;3
.signature 38;5;192;3 .signature 38;5;192;3
@ -132,9 +156,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.pgp 38;5;192;3 .pgp 38;5;192;3
.asc 38;5;192;3 .asc 38;5;192;3
.enc 38;5;192;3 .enc 38;5;192;3
# interface file in GHC - https://github.com/trapd00r/LS_COLORS/pull/9 # //////////////////////////////////////////////
.hi 38;5;240
.hs 38;5;155;1
# web services # web services
.css 38;5;91 .css 38;5;91
.htm 38;5;125;1 .htm 38;5;125;1
@ -150,6 +172,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.jsp 38;5;45 .jsp 38;5;45
.php 38;5;93 .php 38;5;93
# #
# //////////////////////////////////////////////
.lisp 38;5;204;1 .lisp 38;5;204;1
.log 38;5;190 .log 38;5;190
.lua 38;5;34;1 .lua 38;5;34;1
@ -193,6 +216,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.xml 38;5;199 .xml 38;5;199
.yml 38;5;208 .yml 38;5;208
.zsh 38;5;173 .zsh 38;5;173
# //////////////////////////////////////////////
# Build stuff # Build stuff
*README 38;5;220;1 *README 38;5;220;1
*Makefile 38;5;196 *Makefile 38;5;196
@ -204,6 +228,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.in 38;5;242 .in 38;5;242
.old 38;5;242 .old 38;5;242
.out 38;5;46;1 .out 38;5;46;1
# //////////////////////////////////////////////
# graphics # graphics
.JPG 38;5;66 .JPG 38;5;66
.bmp 38;5;62 .bmp 38;5;62
@ -216,6 +241,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.png 38;5;68;1 .png 38;5;68;1
.svg 38;5;24;1 .svg 38;5;24;1
.xpm 38;5;36 .xpm 38;5;36
# //////////////////////////////////////////////
# Emulator roms, emulator savegames # Emulator roms, emulator savegames
.32x 38;5;137 .32x 38;5;137
.A64 38;5;82 .A64 38;5;82
@ -272,6 +298,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.vob 38;5;137 .vob 38;5;137
.webm 38;5;109 .webm 38;5;109
.wmv 38;5;113 .wmv 38;5;113
# //////////////////////////////////////////////
# music, audio # music, audio
.3ga 38;5;95 .3ga 38;5;95
.S3M 38;5;71;1 .S3M 38;5;71;1
@ -304,6 +331,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.ttf 38;5;66 .ttf 38;5;66
.pcf 38;5;65 .pcf 38;5;65
.psf 38;5;64 .psf 38;5;64
# //////////////////////////////////////////////
# backups, undo files, tempfiles # backups, undo files, tempfiles
.bak 38;5;41;1 .bak 38;5;41;1
.bin 38;5;249 .bin 38;5;249
@ -315,6 +343,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.un~ 38;5;240 .un~ 38;5;240
.zcompdump 38;5;240 .zcompdump 38;5;240
.zwc 38;5;240 .zwc 38;5;240
# //////////////////////////////////////////////
# databases # databases
.accdb 38;5;60 .accdb 38;5;60
.accde 38;5;60 .accde 38;5;60
@ -325,6 +354,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.sqlite 38;5;60 .sqlite 38;5;60
.typelib 38;5;60 .typelib 38;5;60
.localstorage 38;5;60 .localstorage 38;5;60
# //////////////////////////////////////////////
# (compressed) archives # (compressed) archives
.7z 38;5;40 .7z 38;5;40
.a 38;5;46 .a 38;5;46
@ -464,9 +494,11 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.vdf 38;5;215 .vdf 38;5;215
.xz 38;5;118 .xz 38;5;118
.zip 38;5;41 .zip 38;5;41
# //////////////////////////////////////////////
# /etc/hosts.{deny,allow} # /etc/hosts.{deny,allow}
.allow 38;5;112 .allow 38;5;112
.deny 38;5;196 .deny 38;5;196
# //////////////////////////////////////////////
# other # other
.SKIP 38;5;244 .SKIP 38;5;244
.def 38;5;136 .def 38;5;136
@ -484,10 +516,12 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.sch 38;5;34 .sch 38;5;34
.cnc 38;5;37 .cnc 38;5;37
.xln 38;5;37 .xln 38;5;37
# //////////////////////////////////////////////
# tcpdump # tcpdump
.pcap 38;5;29 .pcap 38;5;29
.cap 38;5;29 .cap 38;5;29
.dmp 38;5;29 .dmp 38;5;29
# //////////////////////////////////////////////
# systemd units # systemd units
# http://www.freedesktop.org/software/systemd/man/systemd.unit.html # http://www.freedesktop.org/software/systemd/man/systemd.unit.html
.service 38;5;81 .service 38;5;81
@ -502,6 +536,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3
.timer 38;5;111 .timer 38;5;111
.snapshot 38;5;139 .snapshot 38;5;139
# //////////////////////////////////////////////
TERM Eterm TERM Eterm
TERM ansi TERM ansi
TERM color-xterm TERM color-xterm