mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 13:16:39 +03:00
0f8146b212
Nudge new users towards using this style:
```lua
local config = {}
config.color_scheme = 'Batman'
return config
```
and surface how to write lua modules closer to the main section
on config files. In that lua modules section, nudge towards using
a convention similar to that of the plugin spec described in
this commit: e4ae8a844d
13 lines
308 B
Rust
13 lines
308 B
Rust
//! This is used to generate a table in the wezterm docs
|
|
|
|
fn main() {
|
|
println!("| | |");
|
|
println!("|-|-|");
|
|
for &(label, c) in termwiz::nerdfonts::NERD_FONT_GLYPHS {
|
|
println!(
|
|
"|<span class=\"nerdfont big\">&#x{:x};</span>|{}|",
|
|
c as u32, label
|
|
);
|
|
}
|
|
}
|