diff options
author | SnakE-2024 <snake6snake@gmail.com> | 2024-11-29 14:25:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-29 13:25:42 +0100 |
commit | 8c477f9c7daaf6cd95faec702556b8e141d7715a (patch) | |
tree | acdc806ccff89a8cd4d93c476dfa40be6c7c9598 /plugins | |
parent | e9d799ac79572ed7ac83c38ce0aabf688d049f69 (diff) | |
download | lite-xl-plugins-8c477f9c7daaf6cd95faec702556b8e141d7715a.tar.gz lite-xl-plugins-8c477f9c7daaf6cd95faec702556b8e141d7715a.zip |
Update nerdicons.lua (#500)
* Update nerdicons.lua
Added icons for D and Haxe source files
* Update manifest.json
nerdicons plugin version updated
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/nerdicons.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/nerdicons.lua b/plugins/nerdicons.lua index 014e592..55f6305 100644 --- a/plugins/nerdicons.lua +++ b/plugins/nerdicons.lua @@ -62,6 +62,10 @@ local previous_scale = SCALE local extension_icons = {
+ [".hxml"] = { "#d3d3d3", "seti-config" }, -- Haxe
+ [".hx"] = { "#f68712", "seti-haxe" },
+ [".d"] = { "#ff3333", "dev-dlang" }, -- D
+ [".di"] = { "#ff6666", "dev-dlang" },
[".lua"] = { "#405af0", "seti-lua" },
[".md"] = { "#519aba", "dev-markdown" }, -- Markdown
[".powershell"] = { "#519aba", "cod-terminal_powershell" },
|