blob: 3de28c68971368ed6d3d33baf2ed69f30c17e148 (
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
|
{
pkgs,
lib,
...
}: {
programs.nixvim = {
# 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";
}
];
};
}
|