Skip to content

Commit f903993

Browse files
committed
feat: add icons for Assembly files (*.S and *.asm)
1 parent 15c7d0f commit f903993

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

lua/nvim-web-devicons/icons-default.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,18 @@ local icons_by_filename = {
323323
cterm_color = "28",
324324
name = "Vimrc",
325325
},
326+
["S"] = {
327+
icon = "",
328+
color = "#0071C5",
329+
cterm_color = "25",
330+
name = "ASM",
331+
},
332+
["asm"] = {
333+
icon = "",
334+
color = "#0091BD",
335+
cterm_color = "31",
336+
name = "ASM",
337+
},
326338
["AUTHORS"] = {
327339
icon = "",
328340
color = "#A172FF",

lua/nvim-web-devicons/icons-light.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,18 @@ local icons_by_filename = {
323323
cterm_color = "22",
324324
name = "Vimrc",
325325
},
326+
["S"] = {
327+
icon = "",
328+
color = "#005594",
329+
cterm_color = "25",
330+
name = "ASM",
331+
},
332+
["asm"] = {
333+
icon = "",
334+
color = "#006d8e",
335+
cterm_color = "24",
336+
name = "ASM",
337+
},
326338
["AUTHORS"] = {
327339
icon = "",
328340
color = "#6b4caa",

0 commit comments

Comments
 (0)