Skip to content

Commit e2e3475

Browse files
feat: add blueprint icon (#431)
* feat: add blueprint icon * feat: add blueprint filetype * feat: add blueprint filetype --------- Co-authored-by: Alexander Courtis <alex@courtis.org>
1 parent bb9988e commit e2e3475

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

lua/nvim-web-devicons.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ local filetypes = {
4343
["avif"] = "avif",
4444
["bzl"] = "bzl",
4545
["brewfile"] = "brewfile",
46+
["blueprint"] = "blp",
4647
["checkhealth"] = "checkhealth",
4748
["commit"] = "commit_editmsg",
4849
["copying"] = "copying",

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,12 @@ local icons_by_file_extension = {
530530
cterm_color = "140",
531531
name = "Bmp",
532532
},
533+
["blp"] = {
534+
icon = "󰺾",
535+
color = "#5796E2",
536+
cterm_color = "68",
537+
name = "Blueprint",
538+
},
533539
["bzl"] = {
534540
icon = "",
535541
color = "#89e051",

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,12 @@ local icons_by_file_extension = {
530530
cterm_color = "96",
531531
name = "Bmp",
532532
},
533+
["blp"] = {
534+
icon = "󰺾",
535+
color = "#3a6497",
536+
cterm_color = "25",
537+
name = "Blueprint",
538+
},
533539
["bzl"] = {
534540
icon = "",
535541
color = "#447028",

0 commit comments

Comments
 (0)