-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
45 lines (34 loc) · 1.09 KB
/
config.h
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
typedef struct {
const char *file_type;
const char *application;
} FileTypeMapping;
const FileTypeMapping fileTypes[] = {
{"text/plain", "nvim"},
{"text/x-c", "nvim"},
{"text/csv", "nvim"},
{"text/x-makefile", "nvim"},
{"text/x-shellscript", "bash"},
{"text/x-tex", "nvim"},
{"text/html", "nvim"},
{"x-www-browser", "qutebrowser"},
{"application/json", "nvim"},
{"inode/x-empty", "nvim"},
{"application/octet-stream", "nvim"},
{"application/vnd.microsoft.portable-executable", "wine"},
{"application/javascript", "nvim"},
{"inode/directory", "cfl"},
{"video/mp4", "mpv"},
{"video/webm", "mpv"},
{"image/png", "sxiv"},
{"image/jpg", "sxiv"},
{"image/jpeg", "sxiv"},
{"image/gif", "sxiv"},
{"audio/x-wav", "mpg123"},
{"audio/mpeg", "mpg123"},
{"application/x-nes-rom", "mednafen"},
{"application/pdf", "zathura"},
{"application/x-n64-rom", "mupen64plus"},
{"application/x-executable", "launcher.sh"},
{"application/zip", "mame"},
{"application/x-pie-executable", "launcher.sh"},
};