Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-courtis authored Jan 29, 2024
2 parents 2401461 + ac091ae commit dd80a11
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 2 deletions.
3 changes: 3 additions & 0 deletions lua/nvim-web-devicons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ local filetypes = {
["cson"] = "cson",
["css"] = "css",
["csv"] = "csv",
["cuda"] = "cu",
["d"] = "d",
["dart"] = "dart",
["desktop"] = "desktop",
Expand Down Expand Up @@ -105,6 +106,7 @@ local filetypes = {
["go"] = "go",
["godot"] = "godot",
["graphql"] = "graphql",
["groovy"] = "groovy",
["gql"] = "gql",
["gruntfile"] = "gruntfile",
["gulpfile"] = "gulpfile",
Expand All @@ -115,6 +117,7 @@ local filetypes = {
["html"] = "html",
["ico"] = "ico",
["idlang"] = "pro",
["ino"] = "ino",
["import"] = "import",
["java"] = "java",
["javascript"] = "js",
Expand Down
26 changes: 25 additions & 1 deletion lua/nvim-web-devicons/icons-default.lua
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,12 @@ local icons_by_filename = {
cterm_color = "66",
name = "Makefile",
},
["groovy"] = {
icon = "",
color = "#4a687c",
cterm_color = "24",
name = "Groovy",
},
["gruntfile"] = {
icon = "",
color = "#e37933",
Expand Down Expand Up @@ -627,7 +633,7 @@ local icons_by_file_extension = {
name = "Css",
},
["csv"] = {
icon = "󰈙",
icon = "",
color = "#89e051",
cterm_color = "113",
name = "Csv",
Expand All @@ -638,6 +644,18 @@ local icons_by_file_extension = {
cterm_color = "74",
name = "Cts",
},
["cu"] = {
icon = "",
color = "#89e051",
cterm_color = "113",
name = "cuda",
},
["cuh"] = {
icon = "",
color = "#a074c4",
cterm_color = "140",
name = "cudah",
},
["cxx"] = {
icon = "",
color = "#519aba",
Expand Down Expand Up @@ -986,6 +1004,12 @@ local icons_by_file_extension = {
cterm_color = "66",
name = "Ini",
},
["ino"] = {
icon = "",
color = "#56b6c2",
cterm_color = "65",
name = "arduino",
},
["java"] = {
icon = "",
color = "#cc3e44",
Expand Down
26 changes: 25 additions & 1 deletion lua/nvim-web-devicons/icons-light.lua
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,12 @@ local icons_by_filename = {
cterm_color = "59",
name = "Makefile",
},
["groovy"] = {
icon = "",
color = "#384e5d",
cterm_color = "239",
name = "Groovy",
},
["gruntfile"] = {
icon = "",
color = "#975122",
Expand Down Expand Up @@ -627,7 +633,7 @@ local icons_by_file_extension = {
name = "Css",
},
["csv"] = {
icon = "󰈙",
icon = "",
color = "#447028",
cterm_color = "22",
name = "Csv",
Expand All @@ -638,6 +644,18 @@ local icons_by_file_extension = {
cterm_color = "24",
name = "Cts",
},
["cu"] = {
icon = "",
color = "#447028",
cterm_color = "22",
name = "cuda",
},
["cuh"] = {
icon = "",
color = "#6b4d83",
cterm_color = "96",
name = "cudah",
},
["cxx"] = {
icon = "",
color = "#36677c",
Expand Down Expand Up @@ -986,6 +1004,12 @@ local icons_by_file_extension = {
cterm_color = "59",
name = "Ini",
},
["ino"] = {
icon = "",
color = "#397981",
cterm_color = "30",
name = "arduino",
},
["java"] = {
icon = "",
color = "#992e33",
Expand Down

0 comments on commit dd80a11

Please sign in to comment.