//! Miscellaneous configuration options. use std::path::PathBuf; use alacritty_config_derive::ConfigDeserialize; /// General config section. /// /// This section is for fields which can not be easily categorized, /// to avoid common TOML issues with root-level fields. #[derive(ConfigDeserialize, Clone, PartialEq, Debug)] pub struct General { /// Configuration file imports. /// /// This is never read since the field is directly accessed through the config's /// [`toml::Value`], but still present to prevent unused field warnings. pub import: Vec, /// Shell startup directory. pub working_directory: Option, /// Live config reload. pub live_config_reload: bool, /// Offer IPC through a unix socket. #[allow(unused)] pub ipc_socket: bool, } impl Default for General { fn default() -> Self { Self { live_config_reload: true, ipc_socket: true, working_directory: Default::default(), import: Default::default(), } } }