Toggle tiling windows by default
This commit is contained in:
parent
68d9b2a82a
commit
1f2e57b2a9
3 changed files with 7 additions and 2 deletions
|
|
@ -34,6 +34,7 @@ pub struct Config {
|
|||
pub struct StaticConfig {
|
||||
pub key_bindings: HashMap<KeyPattern, Action>,
|
||||
pub workspace_mode: WorkspaceMode,
|
||||
pub floating_default: bool,
|
||||
}
|
||||
|
||||
#[derive(Debug, Deserialize, Clone, Copy, PartialEq, Eq)]
|
||||
|
|
@ -216,6 +217,7 @@ impl Config {
|
|||
StaticConfig {
|
||||
key_bindings: HashMap::new(),
|
||||
workspace_mode: WorkspaceMode::Global,
|
||||
floating_default: false,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue