Skip to content

Commit de015f0

Browse files
authored
Add YAML language support (#499)
1 parent 3363357 commit de015f0

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

resources/yaml.ascii

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{0} __ __ __ __ __ _
2+
{0} \ \ / / / | | \ / | | |
3+
{0} \ \/ / / | | | \ \/ / | | |.
4+
{0} \ / / /| | | |\__/| | | | .
5+
{0} / / / / | | | | | | | | .
6+
{0} / / / / | | | | | | | |___.
7+
{0} /_/ /_/ |_| |_| |_| |______\

src/info/language.rs

+1
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ define_languages! {
274274
{ WebAssembly, "webassembly.ascii", define_colors!( [Color::Magenta, Color::White] : [Color::TrueColor{ r:101, g:79, b:240}, Color::TrueColor{ r:255, g:255, b:255} ]) },
275275
{ Xaml, "xaml.ascii", define_colors!( [Color::Blue, Color::White] : [Color::TrueColor{ r:51, g:120, b:206}, Color::TrueColor{ r:255, g:255, b:255} ]) },
276276
{ Xml, "xml.ascii", define_colors!( [Color::Yellow, Color::White, Color::Green] ) },
277+
{ Yaml, "yaml.ascii", define_colors!( [Color::White] ) },
277278
{ Zig, "zig.ascii", define_colors!( [Color::Yellow] ) },
278279
{ Zsh, "zsh.ascii", define_colors!( [Color::White] ) },
279280
}

0 commit comments

Comments
 (0)