-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathenums.lua
More file actions
78 lines (76 loc) · 1.12 KB
/
enums.lua
File metadata and controls
78 lines (76 loc) · 1.12 KB
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
return {
line_endings = {
dos = "\n",
unix = "\n",
mac = "\r",
},
languages = {
unspecified = 0,
c = 1,
clojure = 2,
coffeescript = 3,
cpp = 4,
csharp = 5,
css = 6,
cudacpp = 7,
dockerfile = 8,
go = 9,
groovy = 10,
handlebars = 11,
haskell = 12,
hcl = 13,
html = 14,
ini = 15,
java = 16,
javascript = 17,
json = 18,
julia = 19,
kotlin = 20,
latex = 21,
less = 22,
lua = 23,
makefile = 24,
markdown = 25,
objectivec = 26,
objectivecpp = 27,
perl = 28,
php = 29,
plaintext = 30,
protobuf = 31,
pbtxt = 32,
python = 33,
r = 34,
ruby = 35,
rust = 36,
sass = 37,
scala = 38,
scss = 39,
shell = 40,
sql = 41,
starlark = 42,
swift = 43,
tsx = 44,
typescript = 45,
visualbasic = 46,
vue = 47,
xml = 48,
xsl = 49,
yaml = 50,
svelte = 51,
},
filetype_aliases = {
bash = "shell",
coffee = "coffeescript",
cs = "csharp",
cuda = "cudacpp",
dosini = "ini",
make = "makefile",
objc = "objectivec",
objcpp = "objectivecpp",
proto = "protobuf",
raku = "perl",
sh = "shell",
text = "plaintext",
[""] = "plaintext",
},
}