with_love table theme (#2468)

This commit is contained in:
Darren Schroeder
2020-08-31 11:50:32 -05:00
committed by GitHub
parent 8192360b20
commit 3f443f40d0
3 changed files with 36 additions and 0 deletions

View File

@ -70,6 +70,7 @@ pub fn table_mode(config: &NuConfig) -> nu_table::Theme {
Ok(m) if m == "compact" => nu_table::Theme::compact(),
Ok(m) if m == "light" => nu_table::Theme::light(),
Ok(m) if m == "thin" => nu_table::Theme::thin(),
Ok(m) if m == "with_love" => nu_table::Theme::with_love(),
Ok(m) if m == "compact_double" => nu_table::Theme::compact_double(),
_ => nu_table::Theme::compact(),
})