about summary refs log tree commit diff stats
path: root/modules/by-name/nv/nvim/plgs/goto-preview/default.nix
blob: 5c56fe8c63cb497c84e3860ce015e26f898d6d32 (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
{
  pkgs,
  lib,
  config,
  ...
}: let
  cfg = config.soispha.programs.nvim;
in {
  home-manager.users.soispha.programs.nixvim = lib.mkIf cfg.enable {
    # TODO: package goto-preview though a module
    extraConfigLuaPost = ''
      ${lib.strings.fileContents ./lua/goto-preview.lua}
    '';
    extraPlugins = [
      pkgs.vimPlugins.goto-preview
    ];
    keymaps = [
      {
        key = "<space>gd";
        mode = "n";
        action.__raw = "require('goto-preview').goto_preview_definition";
        options.desc = "[G]oto [D]efinition";
      }
      {
        key = "<space>gtd";
        mode = "n";
        action.__raw = "require('goto-preview').goto_preview_type_definition";
        options.desc = "[G]oto the [t]ype [D]efinition";
      }
      {
        key = "<space>gi";
        mode = "n";
        action.__raw = "require('goto-preview').goto_preview_implementation";
        options.desc = "[G]oto [I]mplementations";
      }
      {
        key = "<space>gr";
        mode = "n";
        action.__raw = "require('goto-preview').goto_preview_references";
        options.desc = "[G]o to all [R]eferences of the symbol";
      }
      {
        key = "\\<space>";
        mode = "n";
        action.__raw = "require('goto-preview').close_all_win";
        options.desc = "close all preview windows";
      }
    ];
  };
}