You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
neovide/src/settings.rs

14 lines
281 B
Rust

use std::sync::atomic::AtomicBool;
use crossbeam::atomic::AtomicCell;
lazy_static! {
pub static ref SETTINGS: Settings = Settings::default();
}
#[derive(Default)]
pub struct Settings {
pub neovim_arguments: AtomicCell<Option<Vec<String>>>,
pub no_idle: AtomicBool
}