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/nonicons.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/nonicons.lua')
-rw-r--r-- | plugins/nonicons.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/nonicons.lua b/plugins/nonicons.lua index b0f29d6..9865e40 100644 --- a/plugins/nonicons.lua +++ b/plugins/nonicons.lua @@ -75,7 +75,7 @@ local extension_icons = { [".java"] = { "#cc3e44", "" }, [".scala"] = { "#cc3e44", "" }, [".kt"] = { "#F88A02", "" }, -- Kotlin - [".pl"] = { "#519aba", "" }, -- Perl + [".pl"] = { "#519aba", "" }, [".pm"] = { "#519aba", "" }, -- Perl [".r"] = { "#358a5b", "" }, [".rake"] = { "#701516", "" }, [".rb"] = { "#701516", "" }, -- Ruby |