blob: f967a7399db5da223be5980ea72858fd8001d9b7 (
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
|
{...}: {
programs.nixvim.plugins.telescope.keymaps = {
"<space>rg" = {
action = "live_grep";
desc = "[rg] in a live session";
};
"<space>gd" = {
action = "lsp_definitions";
desc = "[G]oto [D]efinition (Telescope)";
};
"<space>gtd" = {
action = "lsp_type_definitions";
desc = "[G]oto the [t]ype [D]efinition (Telescope)";
};
"<space>gi" = {
action = "lsp_implementations";
desc = "[G]oto [I]mplementations (Telescope)";
};
"<space>gr" = {
action = "lsp_references";
desc = "[G]o to all [R]eferences of the symbol (Telescope)";
};
};
}
|