-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.dircolors
1015 lines (934 loc) · 19.5 KB
/
.dircolors
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This section is 24bit/16 million colors - depends on a hack specific to this repo, and might not work in your terminal emulator
# See this for more info: https://gist.github.com/XVilka/8346728
TERM *+iterm3
# Attribute codes:
# 0 : none
# 1 : bold
# 2 : dim
# 3 : italic
# 4 : underscore
# 5 : blink
# 7 : reverse
# 8 : concealed (?)
# Foreground : 38;2;R;G;B;<Attributes>
# Background : 48;2;R;G;B;<Attributes>
# Basic file type colors
DIR 38;2;32;142;229 # Directory (sky blue)
EXEC 38;2;0;255;0;1;3 # File with execute permission (bright green, bold, italic)
LINK 38;2;0;246;248 # Symlink (cyan)
ORPHAN 38;2;255;0;0;1;5;7 # Bad symlink (red, invert, bold, blink)
BLK 38;2;240;32;32;1;48;2;32;32;32 # Block device (red, bold, grey background)
CHR 38;2;252;106;8;1;48;2;32;32;32 # Character device (orange, bold, grey background)
MISSING 0 # Symlink pointing to a nonexistent file
MULTIHARDLINK 0 # Regular file with more than one link
RESET 0 # Reset to "normal" color
CAPABILITY 30;41 # File with capability
DOOR 01;35 # Door
FIFO 40;33 # Pipe
SOCK 38;2;255;0;224;1;3;7 # Socket (also used by readline colored-completion-prefix)
SETGID 30;43 # File that is setgid (g+s)
SETUID 37;41 # File that is setuid (u+s)
STICKY 38;2;32;142;229;3 # Dir WITH sticky bit set (+t) and IS NOT other-writable (o+w)
STICKY_OTHER_WRITABLE 38;2;32;142;229;3;1 # Dir WITH sticky bit set (+t) and IS other-writable (o+w)
OTHER_WRITABLE 38;2;32;142;229;1 # Dir WITHOUT sticky bit set (+t) and IS other-writable (o+w)
NORMAL 38;2;210;210;210
FILE 38;2;150;150;150
# readline colored-completion-prefix
.readline-colored-completion-prefix 38;2;255;0;224;1;3;7
# Bash profile (dark green, italic)
.bash_logout 38;2;63;183;58;3
.bash_profile 38;2;63;183;58;3
.bashrc 38;2;63;183;58;3
.lessfilter 38;2;63;183;58;3
.profile 38;2;63;183;58;3
# Scripts (dark green, italic)
# These should already have exec permission and be set to brighter green,
# So this dark green helps weed them out
.bash 38;2;63;183;58;3
.bat 38;2;63;183;58;3
.btm 38;2;63;183;58;3
.cmd 38;2;63;183;58;3
.com 38;2;63;183;58;3
.csh 38;2;63;183;58;3
.exe 38;2;63;183;58;3
.ksh 38;2;63;183;58;3
.ps1 38;2;63;183;58;3
.sh 38;2;63;183;58;3
.zsh 38;2;63;183;58;3
# Archives/compressed (magenta)
.7z 38;2;230;64;63
.ace 38;2;230;64;63
.alz 38;2;230;64;63
.arc 38;2;230;64;63
.arj 38;2;230;64;63
.br 38;2;230;64;63
.bz 38;2;230;64;63
.bz2 38;2;230;64;63
.cab 38;2;230;64;63
.cpio 38;2;230;64;63
.deb 38;2;230;64;63
.dmg 38;2;230;64;63
.dz 38;2;230;64;63
.ear 38;2;230;64;63
.gz 38;2;230;64;63
.jar 38;2;230;64;63
.lha 38;2;230;64;63
.lrz 38;2;230;64;63
.lz 38;2;230;64;63
.lz4 38;2;230;64;63
.lzh 38;2;230;64;63
.lzma 38;2;230;64;63
.lzo 38;2;230;64;63
.msi 38;2;230;64;63
.ova 38;2;230;64;63
.pkg 38;2;230;64;63
.rar 38;2;230;64;63
.rpm 38;2;230;64;63
.rvz 38;2;230;64;63
.rz 38;2;230;64;63
.sar 38;2;230;64;63
.t7z 38;2;230;64;63
.tar 38;2;230;64;63
.taz 38;2;230;64;63
.tbz 38;2;230;64;63
.tbz2 38;2;230;64;63
.tgz 38;2;230;64;63
.tlz 38;2;230;64;63
.txz 38;2;230;64;63
.tz 38;2;230;64;63
.tzo 38;2;230;64;63
.war 38;2;230;64;63
.xar 38;2;230;64;63
.xci 38;2;230;64;63
.xz 38;2;230;64;63
.z 38;2;230;64;63
.zip 38;2;230;64;63
.zoo 38;2;230;64;63
# Image formats (pink)
.ANX 38;2;212;108;154
.anx 38;2;212;108;154
.AVIF 38;2;212;108;154
.avif 38;2;212;108;154
.AXV 38;2;212;108;154
.axv 38;2;212;108;154
.BMP 38;2;212;108;154
.bmp 38;2;212;108;154
.CGM 38;2;212;108;154
.cgm 38;2;212;108;154
.CR2 38;2;212;108;154
.cr2 38;2;212;108;154
.DL 38;2;212;108;154
.dl 38;2;212;108;154
.EMF 38;2;212;108;154
.emf 38;2;212;108;154
.FLC 38;2;212;108;154
.flc 38;2;212;108;154
.FLI 38;2;212;108;154
.fli 38;2;212;108;154
.GIF 38;2;212;108;154
.gif 38;2;212;108;154
.GL 38;2;212;108;154
.gl 38;2;212;108;154
.HEIC 38;2;212;108;154
.heic 38;2;212;108;154
.ICO 38;2;212;108;154
.ico 38;2;212;108;154
.JPEG 38;2;212;108;154
.jpeg 38;2;212;108;154
.JPG 38;2;212;108;154
.jpg 38;2;212;108;154
.JXR 38;2;212;108;154
.jxr 38;2;212;108;154
.MNG 38;2;212;108;154
.mng 38;2;212;108;154
.NUV 38;2;212;108;154
.nuv 38;2;212;108;154
.OGM 38;2;212;108;154
.ogm 38;2;212;108;154
.OGV 38;2;212;108;154
.ogv 38;2;212;108;154
.OGX 38;2;212;108;154
.ogx 38;2;212;108;154
.PBM 38;2;212;108;154
.pbm 38;2;212;108;154
.PCX 38;2;212;108;154
.pcx 38;2;212;108;154
.PGM 38;2;212;108;154
.pgm 38;2;212;108;154
.PNG 38;2;212;108;154
.png 38;2;212;108;154
.PPM 38;2;212;108;154
.ppm 38;2;212;108;154
.PSD 38;2;212;108;154
.psd 38;2;212;108;154
.QT 38;2;212;108;154
.qt 38;2;212;108;154
.RM 38;2;212;108;154
.rm 38;2;212;108;154
.RMVB 38;2;212;108;154
.rmvb 38;2;212;108;154
.SVG 38;2;212;108;154
.svg 38;2;212;108;154
.SVGZ 38;2;212;108;154
.svgz 38;2;212;108;154
.SWF 38;2;212;108;154
.swf 38;2;212;108;154
.TGA 38;2;212;108;154
.tga 38;2;212;108;154
.TIF 38;2;212;108;154
.tif 38;2;212;108;154
.TIFF 38;2;212;108;154
.tiff 38;2;212;108;154
.WEBP 38;2;212;108;154
.webp 38;2;212;108;154
.XBM 38;2;212;108;154
.xbm 38;2;212;108;154
.XCF 38;2;212;108;154
.xcf 38;2;212;108;154
.XPM 38;2;212;108;154
.xpm 38;2;212;108;154
.XWD 38;2;212;108;154
.xwd 38;2;212;108;154
.YUV 38;2;212;108;154
.yuv 38;2;212;108;154
# Video formats (slightly different pink)
.ASF 38;2;169;49;102
.asf 38;2;169;49;102
.AVI 38;2;169;49;102
.avi 38;2;169;49;102
.FLV 38;2;169;49;102
.flv 38;2;169;49;102
.M2V 38;2;169;49;102
.m2v 38;2;169;49;102
.M4V 38;2;169;49;102
.m4v 38;2;169;49;102
.MKV 38;2;169;49;102
.mkv 38;2;169;49;102
.MOV 38;2;169;49;102
.mov 38;2;169;49;102
.MP4 38;2;169;49;102
.mp4 38;2;169;49;102
.MP4V 38;2;169;49;102
.mp4v 38;2;169;49;102
.MPEG 38;2;169;49;102
.mpeg 38;2;169;49;102
.MPG 38;2;169;49;102
.mpg 38;2;169;49;102
.TS 38;2;169;49;102
.ts 38;2;169;49;102
.VOB 38;2;169;49;102
.vob 38;2;169;49;102
.WEBM 38;2;169;49;102
.webm 38;2;169;49;102
.WMV 38;2;169;49;102
.wmv 38;2;169;49;102
# Lossless audio formats (dark purple)
.aif 38;2;108;113;196
.aiff 38;2;108;113;196
.dff 38;2;108;113;196
.dsf 38;2;108;113;196
.mid 38;2;108;113;196
.midi 38;2;108;113;196
.flac 38;2;108;113;196
.wav 38;2;108;113;196
# Lossy audio formats (light purple)
.aac 38;2;152;155;213
.amr 38;2;152;155;213
.au 38;2;152;155;213
.axa 38;2;152;155;213
.m4a 38;2;152;155;213
.mka 38;2;152;155;213
.mp3 38;2;152;155;213
.mpc 38;2;152;155;213
.oga 38;2;152;155;213
.ogg 38;2;152;155;213
.ra 38;2;152;155;213
.spx 38;2;152;155;213
.xspf 38;2;152;155;213
# Data blobs (orange)
.a2l 38;2;252;106;8
.cert 38;2;252;106;8
.crt 38;2;252;106;8
.csv 38;2;252;106;8
.dtd 38;2;252;106;8
.gemrc 38;2;252;106;8
.json 38;2;252;106;8
.key 38;2;252;106;8
.mxml 38;2;252;106;8
.ovf 38;2;252;106;8
.p12 38;2;252;106;8
.pem 38;2;252;106;8
.pid 38;2;252;106;8
.plist 38;2;252;106;8
.pub 38;2;252;106;8
.sls 38;2;252;106;8
.sql 38;2;252;106;8
.wsdl 38;2;252;106;8
.xdf 38;2;252;106;8
.xml 38;2;252;106;8
.xsd 38;2;252;106;8
.xsl 38;2;252;106;8
.xsls 38;2;252;106;8
.xslt 38;2;252;106;8
.yaml 38;2;252;106;8
.yml 38;2;252;106;8
*ssh_host_*_key 38;2;230;230;0
# Plaintext-ish data blobs
.pem 38;2;252;106;8;3
.pub 38;2;252;106;8;3
# .NET application XML (orange)
.application 38;2;252;106;8
.config 38;2;252;106;8
.manifest 38;2;252;106;8
# macOS data blobs (orange)
.CFUserTextEncoding 38;2;252;106;8
.DS_Store 38;2;252;106;8
# ViM data blobs (orange)
.nviminfo 38;2;252;106;8
.vim_local_rc_cache 38;2;252;106;8
.viminfo 38;2;252;106;8
# Command data blobs (orange)
.bash_history 38;2;252;106;8
.lesshst 38;2;252;106;8
.node_repl_history 38;2;252;106;8
.pry_history 38;2;252;106;8
.wget-hsts 38;2;252;106;8
# JSON config files (orange)
.eslintrc 38;2;252;106;8
.csslintrc 38;2;252;106;8
.htmlhintrc 38;2;252;106;8
.jsbeautifyrc 38;2;252;106;8
.prettierrc 38;2;252;106;8
.proselintrc 38;2;252;106;8
.stylelintrc 38;2;252;106;8
# Git config files (pink)
.git 38;2;220;115;218
.gitconfig 38;2;220;115;218
.gitignore 38;2;220;115;218
.gitattributes 38;2;220;115;218
.gitmodules 38;2;220;115;218
# Bash config files (pink)
.bash_sessions_disable 38;2;220;115;218
.hushlogin 38;2;220;115;218
.inputrc 38;2;220;115;218
# Config files (pink)
.cfg 38;2;220;115;218
.cnf 38;2;220;115;218
.conf 38;2;220;115;218
.conf.tmpl 38;2;220;115;218
.dircolors 38;2;220;115;218
.gdbinit 38;2;220;115;218
.gtkrc-2.0 38;2;220;115;218
.gypi 38;2;220;115;218
.ini 38;2;220;115;218
.jinja 38;2;220;115;218
.mount 38;2;220;115;218
.nload 38;2;220;115;218
.pa 38;2;220;115;218
.piprc 38;2;220;115;218
.rc 38;2;220;115;218
.repo 38;2;220;115;218
.repo.tmpl 38;2;220;115;218
.screenrc 38;2;220;115;218
.service 38;2;220;115;218
.tidyrc 38;2;220;115;218
.timer 38;2;220;115;218
.vim 38;2;220;115;218
.vimrc 38;2;220;115;218
*ssh_config 38;2;220;115;218
*sshd_config 38;2;220;115;218
# Text documents (yellow)
.ac 38;2;230;230;0
.cmake 38;2;230;230;0
.css 38;2;230;230;0
.cue 38;2;230;230;0
.diff 38;2;230;230;0
.eng 38;2;230;230;0
.gpg 38;2;230;230;0
.h 38;2;230;230;0
.hpp 38;2;230;230;0
.htm 38;2;230;230;0
.html 38;2;230;230;0
.in 38;2;230;230;0
.inf 38;2;230;230;0
.lo 38;2;230;230;0
.log 38;2;230;230;0
.m4 38;2;230;230;0
.map 38;2;230;230;0
.markdown 38;2;230;230;0
.md 38;2;230;230;0
.md5 38;2;230;230;0
.mdown 38;2;230;230;0
.mf 38;2;230;230;0
.mib 38;2;230;230;0
.patch 38;2;230;230;0
.qml 38;2;230;230;0
.rst 38;2;230;230;0
.shtml 38;2;230;230;0
.spec 38;2;230;230;0
.textile 38;2;230;230;0
.txt 38;2;230;230;0
*LICENSE 38;2;230;230;0
# Make sass/scss slightly more orange from vanilla css
.sass 38;2;255;172;0
.scss 38;2;255;172;0
# Non-compiled code-ish (light green)
.c 38;2;77;190;129
.cc 38;2;77;190;129
.cl 38;2;77;190;129
.coffee 38;2;77;190;129
.cpp 38;2;77;190;129
.dsl 38;2;77;190;129
.erb 38;2;77;190;129
.erl 38;2;77;190;129
.go 38;2;77;190;129
.gyp 38;2;77;190;129
.hxx 38;2;77;190;129
.il 38;2;77;190;129
.ino 38;2;77;190;129
.ips 38;2;77;190;129
.java 38;2;77;190;129
.js 38;2;77;190;129
.py 38;2;77;190;129
.lua 38;2;77;190;129
.man 38;2;77;190;129
.nse 38;2;77;190;129
.php 38;2;77;190;129
.pl 38;2;77;190;129
.pm 38;2;77;190;129
.rb 38;2;77;190;129
.rl 38;2;77;190;129
.t 38;2;77;190;129
.ts 38;2;77;190;129
.xs 38;2;77;190;129
# .NET application deploy (dark yellow/brown)
.deploy 38;2;209;117;67
# Binary files (dark yellow/brown)
.3ds 38;2;209;117;67
.a 38;2;209;117;67
.abw 38;2;209;117;67
.aml 38;2;209;117;67
.bin 38;2;209;117;67
.dam 38;2;209;117;67
.dll 38;2;209;117;67
.doc 38;2;209;117;67
.docx 38;2;209;117;67
.dtb 38;2;209;117;67
.ecu 38;2;209;117;67
.eot 38;2;209;117;67
.epub 38;2;209;117;67
.gb 38;2;209;117;67
.gba 38;2;209;117;67
.gbc 38;2;209;117;67
.ger 38;2;209;117;67 # lol, INPA
.gg 38;2;209;117;67
.grp 38;2;209;117;67
.img 38;2;209;117;67
.ipo 38;2;209;117;67
.iso 38;2;209;117;67
.la 38;2;209;117;67
.ndd 38;2;209;117;67
.nds 38;2;209;117;67
.nes 38;2;209;117;67
.nsp 38;2;209;117;67
.o 38;2;209;117;67
.ocx 38;2;209;117;67
.odp 38;2;209;117;67
.ods 38;2;209;117;67
.odt 38;2;209;117;67
.one 38;2;209;117;67
.otf 38;2;209;117;67
.par2 38;2;209;117;67
.pdf 38;2;209;117;67
.ppt 38;2;209;117;67
.pptx 38;2;209;117;67
.prg 38;2;209;117;67
.ps 38;2;209;117;67
.pyc 38;2;209;117;67
.pyo 38;2;209;117;67
.qcow 38;2;209;117;67
.qcow2 38;2;209;117;67
.rnd 38;2;209;117;67
.rtf 38;2;209;117;67
.sav 38;2;209;117;67
.sfc 38;2;209;117;67
.smc 38;2;209;117;67
.srm 38;2;209;117;67
.state 38;2;209;117;67
.state* 38;2;209;117;67
.terminfo 38;2;209;117;67
.tex 38;2;209;117;67
.ttf 38;2;209;117;67
.wad 38;2;209;117;67
.woff 38;2;209;117;67
.woff2 38;2;209;117;67
.wpd 38;2;209;117;67
.wua 38;2;209;117;67
.xls 38;2;209;117;67
.xlsx 38;2;209;117;67
.z64 38;2;209;117;67
# This section is normal 256color
TERM *-256color
TERM linux
# Attribute codes:
# 0 : none
# 1 : bold
# 2 : dim
# 3 : italic
# 4 : underscore
# 5 : blink
# 7 : reverse
# 8 : concealed (?)
# Foreground : 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background : 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
# Basic file type colors
DIR 34 # Directory (blue)
EXEC 32;1;3 # File with execute permission (green, bold, italic)
LINK 36 # Symlink (cyan)
ORPHAN 31;1;5;7 # Bad symlink (red, invert, bold, blink)
BLK 31;47;1 # Block device (red, bold, grey background)
CHR 33;47;1 # Character device (yellow, bold, grey background)
MISSING 0 # Symlink pointing to a nonexistent file
MULTIHARDLINK 0 # Regular file with more than one link
RESET 0 # Reset to "normal" color
CAPABILITY 30;41 # File with capability
DOOR 01;35 # Door
FIFO 40;33 # Pipe
SOCK 35;1;3;7 # Socket (also used by readline colored-completion-prefix)
SETGID 30;43 # File that is setgid (g+s)
SETUID 37;41 # File that is setuid (u+s)
STICKY 34;3 # Dir WITH sticky bit set (+t) and IS NOT other-writable (o+w)
STICKY_OTHER_WRITABLE 34;3;1 # Dir WITH sticky bit set (+t) and IS other-writable (o+w)
OTHER_WRITABLE 34;1 # Dir WITHOUT sticky bit set (+t) and IS other-writable (o+w)
NORMAL 0
FILE 0
# readline colored-completion-prefix
.readline-colored-completion-prefix 35;1;3;7
# Bash profile (green)
.bash_logout 32
.bash_profile 32
.bashrc 32
.lessfilter 32
.profile 32
# Scripts (green)
# These should already have exec permission and be set to brighter green,
# So this dark green helps weed them out
.bash 32
.bat 32
.btm 32
.cmd 32
.com 32
.csh 32
.exe 32
.ps1 32
.sh 32
# Archives/compressed (purple)
.7z 35
.ace 35
.alz 35
.arc 35
.arj 35
.br 35
.bz 35
.bz2 35
.cab 35
.cpio 35
.deb 35
.dmg 35
.dz 35
.ear 35
.gz 35
.jar 35
.lha 35
.lrz 35
.lz 35
.lz4 35
.lzh 35
.lzma 35
.lzo 35
.msi 35
.ova 35
.pkg 35
.rar 35
.rpm 35
.rvz 35
.rz 35
.sar 35
.t7z 35
.tar 35
.taz 35
.tbz 35
.tbz2 35
.tgz 35
.tlz 35
.txz 35
.tz 35
.tzo 35
.war 35
.xar 35
.xci 35
.xz 35
.z 35
.zip 35
.zoo 35
# Image formats (purple)
.ANX 35
.anx 35
.AVIF 35
.avif 35
.AXV 35
.axv 35
.BMP 35
.bmp 35
.CGM 35
.cgm 35
.CR2 35
.cr2 35
.DL 35
.dl 35
.EMF 35
.emf 35
.FLC 35
.flc 35
.FLI 35
.fli 35
.GIF 35
.gif 35
.GL 35
.gl 35
.HEIC 35
.heic 35
.ICO 35
.ico 35
.JPEG 35
.jpeg 35
.JPG 35
.jpg 35
.JXR 35
.jxr 35
.MNG 35
.mng 35
.NUV 35
.nuv 35
.OGM 35
.ogm 35
.OGV 35
.ogv 35
.OGX 35
.ogx 35
.PBM 35
.pbm 35
.PCX 35
.pcx 35
.PGM 35
.pgm 35
.PNG 35
.png 35
.PPM 35
.ppm 35
.PSD 35
.psd 35
.QT 35
.qt 35
.RM 35
.rm 35
.RMVB 35
.rmvb 35
.SVG 35
.svg 35
.SVGZ 35
.svgz 35
.SWF 35
.swf 35
.TGA 35
.tga 35
.TIF 35
.tif 35
.TIFF 35
.tiff 35
.WEBP 35
.webp 35
.XBM 35
.xbm 35
.XCF 35
.xcf 35
.XPM 35
.xpm 35
.XWD 35
.xwd 35
.YUV 35
.yuv 35
# Video formats (purple)
.asf 35
.ASF 35
.avi 35
.AVI 35
.flv 35
.FLV 35
.m2v 35
.M2V 35
.m4v 35
.M4V 35
.mkv 35
.MKV 35
.mov 35
.MOV 35
.mp4 35
.MP4 35
.mp4v 35
.MP4V 35
.mpeg 35
.MPEG 35
.mpg 35
.MPG 35
.ts 35
.TS 35
.vob 35
.VOB 35
.webm 35
.WEBM 35
.wmv 35
.WMV 35
# Lossless audio formats (purple)
.aif 35
.aiff 35
.dff 35
.dsf 35
.mid 35
.midi 35
.flac 35
.wav 35
# Lossy audio formats (purple)
.aac 35
.amr 35
.au 35
.axa 35
.m4a 35
.mka 35
.mp3 35
.mpc 35
.oga 35
.ogg 35
.ra 35
.spx 35
.xspf 35
# Data blobs (yellow)
.a2l 33
.cert 33
.crt 33
.csv 33
.dtd 33
.gemrc 33
.json 33
.key 33
.mxml 33
.ovf 33
.p12 33
.pid 33
.plist 33
.sls 33
.sql 33
.wsdl 33
.xdf 33
.xml 33
.xsd 33
.xsl 33
.xsls 33
.xslt 33
.yaml 33
.yml 33
*ssh_host_*_key 33
# Plaintext-ish data blobs
.pem 33;3
.pub 33;3
# .NET application XML (yellow)
.application 33
.config 33
.manifest 33
# macOS data blobs (yellow)
.CFUserTextEncoding 33
.DS_Store 33
# ViM data blobs (yellow)
.nviminfo 33
.vim_local_rc_cache 33
.viminfo 33
# Command data blobs (yellow)
.bash_history 33
.lesshst 33
.node_repl_history 33
.pry_history 33
.wget-hsts 33
# JSON config files (yellow)
.eslintrc 33
.csslintrc 33
.htmlhintrc 33
.jsbeautifyrc 33
.prettierrc 33
.proselintrc 33
.stylelintrc 33
# Git config files (cyan)
.git 36
.gitconfig 36
.gitignore 36
.gitattributes 36
.gitmodules 36
# Bash config files (cyan)
.bash_sessions_disable 36
.hushlogin 36
.inputrc 36
# Config files (cyan)
.cfg 36
.cnf 36
.conf 36
.conf.tmpl 36
.dircolors 36
.gdbinit 36
.gtkrc-2.0 36
.gypi 36
.ini 36
.jinja 36
.mount 36
.nload 36
.pa 36
.piprc 36
.rc 36
.repo 36
.repo.tmpl 36
.screenrc 36
.service 36
.tidyrc 36
.timer 36
.vim 36
.vimrc 36
*ssh_config 36
*sshd_config 36
# Text documents (yellow)
.ac 33
.cmake 33
.css 33
.cue 33
.diff 33
.eng 33
.gpg 33
.h 33
.hpp 33
.htm 33
.html 33
.in 33
.inf 33
.lo 33
.log 33
.m4 33
.map 33
.markdown 33
.md 33
.md5 33
.mdown 33
.mf 33
.mib 33
.patch 33
.qml 33
.rst 33
.shtml 33
.spec 33
.textile 33
.txt 33
*LICENSE 33
.sass 33
.scss 33
# Non-compiled code-ish (green)
.c 32
.cc 32
.cl 32
.coffee 32
.cpp 32
.dsl 32
.erb 32
.erl 32
.go 32
.gyp 32
.hxx 32
.il 32
.ino 32
.ips 32
.java 32
.js 32
.py 32
.lua 32
.man 32
.nse 32
.php 32
.pl 32
.pm 32
.rb 32
.rl 32
.t 32
.ts 32
.xs 32
# .NET application deploy (yellow)
.deploy 33
# Binary files (yellow)
.3ds 33
.a 33
.abw 33
.aml 33
.bin 33
.dam 33
.dll 33
.doc 33
.docx 33
.dtb 33
.ecu 33
.eot 33
.epub 33
.gb 33
.gba 33
.gbc 33
.ger 33 # lol, INPA
.gg 33
.grp 33
.img 33
.ipo 33
.iso 33
.la 33
.ndd 33
.nds 33
.nes 33
.nsp 33
.o 33
.ocx 33
.odp 33
.ods 33
.odt 33
.one 33
.otf 33
.par2 33
.pdf 33
.ppt 33
.pptx 33
.prg 33
.ps 33
.pyc 33
.pyo 33
.qcow 33
.qcow2 33
.rnd 33
.rtf 33
.sav 33
.sfc 33
.smc 33
.srm 33
.state 33