diff options
author | ArtemisX64 <101918084+ArtemisX64@users.noreply.github.com> | 2022-08-03 23:42:00 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 23:42:00 +0530 |
commit | fcbec27fa568a1654463c40886e29405213bf60d (patch) | |
tree | 8ab0afa809fd312439c5480e96bad1a4eadf904d | |
parent | e63b676925183d3bcf6ee8bf43d6ff901d072ab0 (diff) | |
download | lite-xl-plugins-fcbec27fa568a1654463c40886e29405213bf60d.tar.gz lite-xl-plugins-fcbec27fa568a1654463c40886e29405213bf60d.zip |
Update nonicons.lua 2.1
Add Zig support in nonicons,lua
-rw-r--r-- | plugins/nonicons.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/nonicons.lua b/plugins/nonicons.lua index 143da13..efbe3b4 100644 --- a/plugins/nonicons.lua +++ b/plugins/nonicons.lua @@ -89,7 +89,7 @@ local extension_icons = { -- Following without special icon: [".awk"] = { "#4d5a5e", "" }, [".nim"] = { "#F88A02", "" }, - + [".zig"] = { "#cbcb41", "" }, } local known_names_icons = { ["changelog"] = { "#657175", "" }, ["changelog.txt"] = { "#4d5a5e", "" }, @@ -102,6 +102,7 @@ local known_names_icons = { ["readme.md"] = { "#72b886", "" }, ["readme"] = { "#72b886", "" }, ["init.lua"] = { "#2d6496", "" }, ["setup.py"] = { "#559dd9", "" }, + ["build.zig"] = { "#6d8086", "" }, } -- Preparing colors |