config/ranger/devicons.py
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
#!/usr/bin/python # coding=UTF-8 # These glyphs, and the mapping of file extensions to glyphs # has been copied from the vimscript code that is present in # https://github.com/ryanoasis/vim-devicons import re; import os; # all those glyphs will show as weird squares if you don't have the correct patched font # My advice is to use NerdFonts which can be found here: # https://github.com/ryanoasis/nerd-fonts file_node_extensions = { 'styl' : '', 'scss' : '', 'htm' : '', 'html' : '', 'slim' : '', 'ejs' : '', 'css' : '', 'less' : '', 'md' : '', 'markdown' : '', 'json' : '', 'js' : '', 'jsx' : '', 'rb' : '', 'php' : '', 'py' : '', 'pyc' : '', 'pyo' : '', 'pyd' : '', 'coffee' : '', 'mustache' : '', 'hbs' : '', 'conf' : '', 'ini' : '', 'yml' : '', 'bat' : '', 'jpg' : '', 'jpeg' : '', 'bmp' : '', 'png' : '', 'gif' : '', 'ico' : '', 'twig' : '', 'cpp' : '', 'c++' : '', 'cxx' : '', 'cc' : '', 'cp' : '', 'c' : '', 'hs' : '', 'lhs' : '', 'lua' : '', 'java' : '', 'sh' : '', 'fish' : '', 'ml' : 'λ', 'mli' : 'λ', 'diff' : '', 'db' : '', 'sql' : '', 'dump' : '', 'clj' : '', 'cljc' : '', 'cljs' : '', 'edn' : '', 'scala' : '', 'go' : '', 'dart' : '', 'xul' : '', 'sln' : '', 'suo' : '', 'pl' : '', 'pm' : '', 't' : '', 'rss' : '', 'f#' : '', 'fsscript' : '', 'fsx' : '', 'fs' : '', 'fsi' : '', 'rs' : '', 'rlib' : '', 'd' : '', 'erl' : '', 'hrl' : '', 'vim' : '', 'vimrc' : '', 'ai' : '', 'psd' : '', 'psb' : '', 'ts' : '', 'jl' : '', 'rc' : '', 'xml' : '', 'log' : '', 'avi' : '', 'mpeg' : '', 'mpg' : '', 'mkv' : '', 'flv' : '', 'mp4' : '', 'mp3' : '', 'flac' : '', 'wav' : '', 'ogg' : '', 'epub' : '', 'pdf' : '', '7z' : '', 'apk' : '', 'bz2' : '', 'cab' : '', 'cpio' : '', 'deb' : '', 'gem' : '', 'gz' : '', 'gzip' : '', 'lha' : '', 'lzh' : '', 'lzma' : '', 'rar' : '', 'rpm' : '', 'tar' : '', 'tgz' : '', 'xz' : '', 'zip' : '' } dir_node_exact_matches = { # English '.git' : '', 'Desktop' : '', 'Documents' : '', 'Downloads' : '', 'Dropbox' : '', 'Music' : '', 'Pictures' : '', 'Public' : '', 'Templates' : '', 'Videos' : '', # French 'Bureau' : '', 'Documents' : '', 'Téléchargements' : '', 'Musique' : '', 'Images' : '', 'Publique' : '', 'Vidéos' : '', # Portuguese 'Área de trabalho' : '', 'Documentos' : '', 'Música' : '', 'Imagens' : '', 'Público' : '', 'Modelos' : '', 'Vídeos' : '', # Italian 'Scrivania' : '', 'Documenti' : '', 'Scaricati' : '', 'Musica' : '', 'Immagini' : '', 'Pubblici' : '', 'Modelli' : '', 'Video' : '', } file_node_exact_matches = { 'exact-match-case-sensitive-1.txt' : 'X1', 'exact-match-case-sensitive-2' : 'X2', 'gruntfile.coffee' : '', 'gruntfile.js' : '', 'gruntfile.ls' : '', 'gulpfile.coffee' : '', 'gulpfile.js' : '', 'gulpfile.ls' : '', 'dropbox' : '', '.ds_store' : '', '.gitconfig' : '', '.gitignore' : '', '.bashrc' : '', '.bashprofile' : '', 'favicon.ico' : '', 'license' : '', 'node_modules' : '', 'react.jsx' : '', 'procfile' : '', '.Xdefaults' : '', '.Xresources' : '', '.dmrc' : '', '.fasd' : '', '.gitconfig' : '', '.jack-settings' : '', '.mime.types' : '', '.nvidia-settings-rc' : '', '.pam_environment' : '', '.profile' : '', '.recently-used' : '', '.selected_editor' : '', '.vimrc' : '', '.xinputrc' : '', 'mimeapps.list' : '', 'user-dirs.dirs' : '', 'ini' : '', 'config' : '' } def devicon(file): if file.is_directory: return dir_node_exact_matches.get(file.relative_path, '') return file_node_exact_matches.get(file.relative_path, file_node_extensions.get(file.extension, ''))