-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscnvim-web-devicons.lua
More file actions
44 lines (44 loc) · 1 KB
/
scnvim-web-devicons.lua
File metadata and controls
44 lines (44 loc) · 1 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
local M = {
"nvim-tree/nvim-web-devicons",
opts = {
override = {
scd = {
icon = "", --nf-md-sine-wave
color = "#008787", --bluegreenish
cterm_color = "30",
name = "SuperCollider",
},
sc = { --what's scala? surely you must mean https://www.huygens-fokker.org/scala/
icon = "", --nf-md-triangle-wave
color = "#af5f87", --reddish
cterm_color = "132",
name = "scClass",
},
schelp = {
icon = "", --nf-md-square-wave
color = "#dfaf00", --orange
cterm_color = "178",
name = "scHelp",
},
scx = {
icon = "", -- nf-md-sawtooth-wave,
color = "#5fff87", --green
cterm_color = "84",
name = "scPlugin",
},
quark = {
icon = "", --milk bottle (I can explain)
colcr = "@ffffdf", --white (evidently)
cterm_color = "230",
name = "scQuark",
},
ly = {
icon = "", --or but how boring is that
color = "#ffff00", --yeller
cterm_color = "226",
name = "lilypond",
},
},
},
}
return M