dotfiles/home/modules/tui/neovim/plugins/harpoon.nix

21 lines
337 B
Nix
Raw Permalink Normal View History

2024-12-05 03:11:13 +00:00
{
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>";
};
};
};
};
2024-12-20 01:30:06 +00:00
}