1/// Preferences loaded from `.tytconfig` files. 2#[derive(Clone, Debug, Default)] 3pub struct Prefs<T> { 4 /// Preferences from `~/.tytconfig`. 5 pub user: Option<T>, 6 /// Preferences from `<git-root>/.tytconfig`. 7 pub git_root: Option<T>, 8}