You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xplr/docs/en/src/node-type.md

37 lines
556 B
Markdown

# Node Type
A node-type contains the following fields:
- [meta][4]
- [style][5]
### meta
Type: mapping of string and string
A meta field can contain custom metadata about a node. By default, the "icon"
metadata is set for the [directory][1], [file][2], and
[symlink][3] nodes.
Example:
```lua
xplr.config.node_types.file = {
meta = {
icon = "f",
foo = "bar",
}
}
```
## Also See:
- [xplr.config.node_types][6]
[1]: node_types.md#directory
[2]: node_types.md#file
[3]: node_types.md#symlink
[4]: #meta
[5]: style.md
[6]: node_types.md