mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
fix: typo for config and temporarily disable dependencies
This commit is contained in:
parent
99de0d4f2a
commit
006eaf33be
10 changed files with 471 additions and 50 deletions
|
|
@ -6,9 +6,19 @@
|
|||
accordion-padding = 10;
|
||||
default-root-container-layout = "tiles";
|
||||
default-root-container-orientation = "auto";
|
||||
on-focus-monitor-changed = ["move-mouse monitor-lazy-center"];
|
||||
on-focus-monitor-changed = [ "move-mouse monitor-lazy-center" ];
|
||||
automatically-unhide-macos-hidden-apps = false;
|
||||
persistent-workspaces = ["1" "2" "3" "4" "5" "6" "7" "8" "9"];
|
||||
persistent-workspaces = [
|
||||
"1"
|
||||
"2"
|
||||
"3"
|
||||
"4"
|
||||
"5"
|
||||
"6"
|
||||
"7"
|
||||
"8"
|
||||
"9"
|
||||
];
|
||||
|
||||
keymapping = {
|
||||
preset = "qwerty";
|
||||
|
|
@ -67,15 +77,39 @@
|
|||
};
|
||||
|
||||
mode.service.binding = {
|
||||
esc = ["reload-config" "mode main"];
|
||||
r = ["flatten-workspace-tree" "mode main"];
|
||||
f = ["layout floating tiling" "mode main"];
|
||||
backspace = ["close-all-windows-but-current" "mode main"];
|
||||
esc = [
|
||||
"reload-config"
|
||||
"mode main"
|
||||
];
|
||||
r = [
|
||||
"flatten-workspace-tree"
|
||||
"mode main"
|
||||
];
|
||||
f = [
|
||||
"layout floating tiling"
|
||||
"mode main"
|
||||
];
|
||||
backspace = [
|
||||
"close-all-windows-but-current"
|
||||
"mode main"
|
||||
];
|
||||
|
||||
alt-shift-h = ["join-with left" "mode main"];
|
||||
alt-shift-j = ["join-with down" "mode main"];
|
||||
alt-shift-k = ["join-with up" "mode main"];
|
||||
alt-shift-l = ["join-with right" "mode main"];
|
||||
alt-shift-h = [
|
||||
"join-with left"
|
||||
"mode main"
|
||||
];
|
||||
alt-shift-j = [
|
||||
"join-with down"
|
||||
"mode main"
|
||||
];
|
||||
alt-shift-k = [
|
||||
"join-with up"
|
||||
"mode main"
|
||||
];
|
||||
alt-shift-l = [
|
||||
"join-with right"
|
||||
"mode main"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue