MyNixOS website logo

List of keybindings.

Declarations
Type
list of (submodule)
Default
[ ]
Example
[
  {
    command = "scroll_down";
    key = "j";
  }
  {
    command = "scroll_up";
    key = "k";
  }
  {
    command = [
      "select_item"
      "scroll_down"
    ];
    key = "J";
  }
  {
    command = [
      "select_item"
      "scroll_up"
    ];
    key = "K";
  }
]