blob: 7676b426ebc435adfe8c5e16a9eb6f711f5064b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#+title: Aerospace Configuration
#+begin_src nix
{ config, pkgs, ... }:
{
services.aerospace = {
enable = true;
settings = {
gaps = {
outer.left = 0;
outer.bottom = 0;
outer.top = 0;
outer.right = 0;
};
mode.main.binding = {
cmd-h = "focus left";
cmd-j = "focus down";
cmd-k = "focus up";
cmd-l = "focus right";
};
};
};
}
#+end_src
|