-
|
I wanted to know what matcher pattern to use in the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Could you post your config snippets so I can see what might be causing the issue? |
Beta Was this translation helpful? Give feedback.
-
|
You can achieve it by overriding the local old_entity_icon = Entity.icon
function Entity:icon()
if self._file.url == Url(os.getenv("HOME")) then
return ui.Line(" [icon] ")
end
return old_entity_icon(self)
end |
Beta Was this translation helpful? Give feedback.

You can achieve it by overriding the
Entity:icon()method. Add the following to yourinit.lua: