mirror of https://github.com/sgoudham/neovide.git
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.
14 lines
281 B
Rust
14 lines
281 B
Rust
5 years ago
|
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
|
||
|
}
|