dotfiles/home/modules/tui/neovim/plugins/harpoon.nix
2024-12-04 21:11:13 -06:00

20 lines
No EOL
336 B
Nix

{
programs.nixvim = {
plugins.harpoon = {
enable = true;
keymapsSilent = true;
keymaps = {
addFile = "<leader>a";
toggleQuickMenu = "<C-e>";
navFile = {
"1" = "<C-j>";
"2" = "<C-k>";
"3" = "<C-l>";
"4" = "<C-m>";
};
};
};
};
}