mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-19 03:02:17 +00:00
20 lines
No EOL
336 B
Nix
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>";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |