Skip to content

Commit 5b90678

Browse files
feat: add bicep and bicepparam (#461)
1 parent 475fbcf commit 5b90678

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

lua/nvim-web-devicons.lua

+2
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ local filetypes = {
7474
["avif"] = "avif",
7575
["bash"] = "bash",
7676
["bib"] = "bib",
77+
["bicep"] = "bicep",
78+
["bicepparam"] = "bicepparam",
7779
["bzl"] = "bzl",
7880
["brewfile"] = "brewfile",
7981
["blueprint"] = "blp",

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

+12
Original file line numberDiff line numberDiff line change
@@ -878,6 +878,18 @@ local icons_by_file_extension = {
878878
cterm_color = "185",
879879
name = "BibTeX",
880880
},
881+
["bicep"] = {
882+
icon = "",
883+
color = "#519aba",
884+
cterm_color = "74",
885+
name = "Bicep",
886+
},
887+
["bicepparam"] = {
888+
icon = "",
889+
color = "#9f74b3",
890+
cterm_color = "133",
891+
name = "BicepParameters",
892+
},
881893
["bin"] = {
882894
icon = "",
883895
color = "#9F0500",

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

+12
Original file line numberDiff line numberDiff line change
@@ -878,6 +878,18 @@ local icons_by_file_extension = {
878878
cterm_color = "58",
879879
name = "BibTeX",
880880
},
881+
["bicep"] = {
882+
icon = "",
883+
color = "#36677c",
884+
cterm_color = "24",
885+
name = "Bicep",
886+
},
887+
["bicepparam"] = {
888+
icon = "",
889+
color = "#6a4d77",
890+
cterm_color = "96",
891+
name = "BicepParameters",
892+
},
881893
["bin"] = {
882894
icon = "",
883895
color = "#9F0500",

0 commit comments

Comments
 (0)