mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
19 lines
330 B
Nix
19 lines
330 B
Nix
|
{
|
||
|
plugins.harpoon = {
|
||
|
enable = true;
|
||
|
enableTelescope = true;
|
||
|
keymapsSilent = true;
|
||
|
keymaps = {
|
||
|
addFile = "<leader>ha";
|
||
|
toggleQuickMenu = "<C-e>";
|
||
|
navFile = {
|
||
|
"1" = "<leader>hj";
|
||
|
"2" = "<leader>hk";
|
||
|
"3" = "<leader>hl";
|
||
|
"4" = "<leader>hm";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|