diff options
author | Rawley <75388349+rawleyfowler@users.noreply.github.com> | 2023-11-23 09:37:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-23 10:37:27 -0500 |
commit | e0ce69d7313840f4806ae8316d2c18b5b95ecade (patch) | |
tree | bf8c6b5bc43d5853347845d4f9324b2437ec98de /plugins/nerdicons.lua | |
parent | c0072b8405a4661d3b6707919f9a8382d618bfdb (diff) | |
download | lite-xl-plugins-e0ce69d7313840f4806ae8316d2c18b5b95ecade.tar.gz lite-xl-plugins-e0ce69d7313840f4806ae8316d2c18b5b95ecade.zip |
Associate ".pm" with Perl icon in Nonicons and Nerdicons (#342)
* Fix perl in nonicons.lua
* Fix perl in nerdicons.lua
Diffstat (limited to 'plugins/nerdicons.lua')
-rw-r--r-- | plugins/nerdicons.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/nerdicons.lua b/plugins/nerdicons.lua index 5e01442..cb72140 100644 --- a/plugins/nerdicons.lua +++ b/plugins/nerdicons.lua @@ -93,7 +93,7 @@ local extension_icons = { [".java"] = { "#cc3e44", "" },
[".scala"] = { "#cc3e44", "" },
[".kt"] = { "#F88A02", "" }, -- Kotlin
- [".pl"] = { "#519aba", "" }, -- Perl
+ [".pl"] = { "#519aba", "" }, [".pm"] = { "#519aba", "" }, -- Perl
[".rb"] = { "#701516", "" }, -- Ruby
[".rs"] = { "#c95625", "" }, -- Rust
[".rss"] = { "#cc3e44", "" },
|