about summary refs log tree commit diff stats
path: root/modules/by-name/nv/nvim/plgs/leap/default.nix
blob: e5c42d2f6f9e7508fb853a148ea6ea69ce670742 (plain) (blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# nixos-config - My current NixOS configuration
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of my nixos-config.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
  config,
  lib,
  ...
}: let
  cfg = config.soispha.programs.nvim;
in {
  home-manager.users.soispha.programs.nixvim = lib.mkIf cfg.enable {
    plugins.leap = {
      enable = true;
      addDefaultMappings = false; # They don't work with dvorak.
      safeLabels = [
        "f"
        "j"
        "k"
        "l"
        "/"
        "z"
        "S"
        "F"
        "J"
        "K"
        "L"
        "H"
        "W"
        "E"
        "M"
        "B"
        "U"
        "X"
        "?"
        "Z"
      ];
    };
    keymaps = [
      {
        key = "j";
        action = "<Plug>(leap-forward-to)";
        options.desc = "jump forward to";
      }
      {
        key = "J";
        action = "<Plug>(leap-backward-to)";
        options.desc = "jump backward to";
      }
      {
        key = "gj";
        action = "<Plug>(leap-from-window)";
        options.desc = "jump to enterable windows";
      }
      /*
            {key= "x";
              mode = "v";
              action = "<Plug>(leap-forward-till)";
      options.desc = "leap forward till";
            }
            {key= "X";
              mode = "v";
              action = "<Plug>(leap-backward-till)";
      options.desc = "leap backward till";
            }
      */
    ];
  };
}