1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-27 02:25:28 +03:00

tidy up config imports a little

This commit is contained in:
Wez Furlong 2019-11-24 07:55:13 -08:00
parent 0f64357203
commit eed6049902
3 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,6 @@
use crate::config::*;
use termwiz::cell::CellAttributes;
use termwiz::color::{ColorSpec, RgbColor};
#[derive(Debug, Deserialize, Clone)]
pub struct Palette {

View File

@ -1,4 +1,5 @@
use crate::config::*;
use termwiz::color::RgbColor;
#[cfg(target_os = "macos")]
const FONT_FAMILY: &str = "Menlo";

View File

@ -16,8 +16,6 @@ use std::fs;
use std::io::prelude::*;
use std::path::PathBuf;
use term;
use termwiz::cell::CellAttributes;
use termwiz::color::{ColorSpec, RgbColor};
use termwiz::hyperlink;
use termwiz::input::{KeyCode, Modifiers};
use toml;