1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
-- mod-version:3
-- Orginal Author: Jipok
-- Modified by: techie-guy
-- Doesn't work well with scaling mode == "ui"
-- This is an extension/modification of the nonicons plugin, https://github.com/lite-xl/lite-xl-plugins/blob/master/plugins/nonicons.lua
-- Any icon can be searched with nerdfonts.com/cheat-sheet
local common = require "core.common"
local config = require "core.config"
local style = require "core.style"
local TreeView = require "plugins.treeview"
local Node = require "core.node"
local nerdfonts_symbols = require "libraries.font_symbols_nerdfont_mono_regular"
-- Config
config.plugins.nerdicons = common.merge({
use_default_dir_icons = false,
use_default_chevrons = false,
draw_treeview_icons = true,
draw_tab_icons = true,
-- The config specification used by the settings gui
config_spec = {
name = "Nerdicons",
{
label = "Use Default Directory Icons",
description = "When enabled does not use nerdicon directory icons.",
path = "use_default_dir_icons",
type = "toggle",
default = false
},
{
label = "Use Default Chevrons",
description = "When enabled does not use nerdicon expand/collapse arrow icons.",
path = "use_default_chevrons",
type = "toggle",
default = false
},
{
label = "Draw Treeview Icons",
description = "Enables file related icons on the treeview.",
path = "draw_treeview_icons",
type = "toggle",
default = true
},
{
label = "Draw Tab Icons",
description = "Adds file related icons to tabs.",
path = "draw_tab_icons",
type = "toggle",
default = true
},
}
}, config.plugins.nerdicons)
local icon_font = renderer.font.load(nerdfonts_symbols.path, 18.5 * SCALE)
local map = nerdfonts_symbols.utf8
local chevron_width = icon_font:get_width(map["oct-chevron_down"])
local previous_scale = SCALE
local extension_icons = {
[".lua"] = { "#405af0", "seti-lua"},
[".md"] = { "#519aba", "dev-markdown" }, -- Markdown
[".powershell"] = { "#519aba", "cod-terminal_powershell" },
[".bat"] = { "#cbcb41", "cod-terminal_cmd" },
[".txt"] = { "#ffffff", "fa-file_text" },
[".cpp"] = { "#519aba", "custom-cpp" },
[".c"] = { "#599eff", "custom-c" },
[".h"] = { "#79029b", "fa-header" },
[".hpp"] = { "#79029b", "fa-header" },
[".py"] = { "#3572A5", "md-language_python" }, -- Python
[".pyc"] = { "#519aba", "md-language_python" },
[".pyd"] = { "#519aba", "md-language_python" },
[".php"] = { "#a074c4", "md-language_php" },
[".cs"] = { "#596706", "md-language_csharp" }, -- C#
[".conf"] = { "#6d8086", "seti-config" }, [".cfg"] = { "#6d8086", "seti-config" },
[".toml"] = { "#6d8086", "seti-config" },
[".yaml"] = { "#6d8086", "seti-yml" }, [".yml"] = { "#6d8086", "seti-yml" },
[".json"] = { "#854CC7", "seti-json" },
[".css"] = { "#519abc", "dev-css3" },
[".html"] = { "#e34c26", "dev-html5" },
[".js"] = { "#cbcb41", "dev-javascript_badge" }, -- JavaScript
[".go"] = { "#519aba", "seti-go" },
[".jpg"] = { "#a074c4", "fa-image" }, [".png"] = { "#a074c4", "fa-image" },
[".sh"] = { "#4d5a5e", "cod-terminal_bash" }, [".bash"] = { "#4d5a5e", "cod-terminal_bash" }, -- Shell
[".java"] = { "#cc3e44", "dev-java" },
[".scala"] = { "#cc3e44", "dev-scala" },
[".kt"] = { "#F88A02", "custom-kotlin" }, -- Kotlin
[".pl"] = { "#519aba", "dev-perl" }, [".pm"] = { "#519aba", "dev-perl" }, -- Perl
[".rb"] = { "#701516", "dev-ruby_rough" }, -- Ruby
[".rs"] = { "#c95625", "dev-rust" }, -- Rust
[".rss"] = { "#cc3e44", "fa-rss_square" },
[".sql"] = { "#dad8d8", "dev-sqllite" },
[".swift"] = { "#e37933", "dev-swift" },
[".ts"] = { "#519aba", "md-language_typescript" }, -- TypeScript
[".diff"] = { "#41535b", "oct-diff" },
[".exe"] = {"#cc3e55", "cod-file_binary"},
[".make"] = { "#d0bf41", "dev-gnu" },
[".svg"] = { "#f7ca39", "md-svg" },
[".ttf"] = {"#dad8d4", "fa-font"}, [".otf"] = {"#dad8d4", "fa-font"},
[".vim"] = {"#8f00ff", "custom-vim"},
}
local known_filenames_icons = {
["dockerfile"] = { "#296478", "linux-docker" },
[".gitignore"] = { "#cc3e55", "dev-git" },
[".gitmodules"] = { "#cc3e56", "dev-git" },
["PKGBUILD"] = { "#6d8ccc", "md-package" },
["license"] = { "#d0bf41", "seti-license" },
["makefile"] = { "#d0bf41", "dev-gnu" },
["cmakelists.txt"] = { "#cc3e55", "md-triangle_outline" },
}
-- Preparing colors
for _, v in pairs(extension_icons) do
v[1] = { common.color(v[1]) }
end
for _, v in pairs(known_filenames_icons) do
v[1] = { common.color(v[1]) }
end
-- Override function to change default icons for dirs, special extensions and names
local TreeView_get_item_icon = TreeView.get_item_icon
function TreeView:get_item_icon(item, active, hovered)
local icon, font, color = TreeView_get_item_icon(self, item, active, hovered)
if previous_scale ~= SCALE then
icon_font:set_size(
icon_font:get_size() * (SCALE / previous_scale)
)
chevron_width = icon_font:get_width(map["oct-chevron_down"])
previous_scale = SCALE
end
if not config.plugins.nerdicons.use_default_dir_icons then
icon = map["cod-file"] -- hex ea7b
font = icon_font
color = style.text
if item.type == "dir" then
icon = item.expanded and map["fa-folder_open"] or map["fa-folder"] -- hex f07c and f07b
end
end
if config.plugins.nerdicons.draw_treeview_icons then
local custom_icon = known_filenames_icons[item.name:lower()]
if custom_icon == nil then
custom_icon = extension_icons[item.name:match("^.+(%..+)$")]
end
if custom_icon ~= nil then
color = custom_icon[1]
icon = map[custom_icon[2]]
font = icon_font
end
if active or hovered then
color = style.accent
end
end
return icon, font, color
end
-- Override function to draw chevrons if setting is disabled
local TreeView_draw_item_chevron = TreeView.draw_item_chevron
function TreeView:draw_item_chevron(item, active, hovered, x, y, w, h)
if not config.plugins.nerdicons.use_default_chevrons then
if item.type == "dir" then
local chevron_icon = item.expanded and "oct-chevron_down" or "oct-chevron_right"
local chevron_color = hovered and style.accent or style.text
common.draw_text(icon_font, chevron_color, map[chevron_icon], nil, x+8, y, 0, h) -- added 8 to x to draw the chevron closer to the icon
end
return chevron_width + style.padding.x
end
return TreeView_draw_item_chevron(self, item, active, hovered, x, y, w, h)
end
-- Override function to draw icons in tabs titles if setting is enabled
local Node_draw_tab_title = Node.draw_tab_title
function Node:draw_tab_title(view, font, is_active, is_hovered, x, y, w, h)
if config.plugins.nerdicons.draw_tab_icons then
local padx = chevron_width + style.padding.x/2
local tx = x + padx/16 -- Space for icon
w = w + padx
Node_draw_tab_title(self, view, font, is_active, is_hovered, tx, y, w, h)
if (view == nil) or (view.doc == nil) then return end
local item = { type = "file", name = view.doc:get_name() }
TreeView:draw_item_icon(item, false, is_hovered, x, y, w, h)
else
Node_draw_tab_title(self, view, font, is_active, is_hovered, x, y, w, h)
end
end
|