mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-27 02:44:58 +08:00
15 lines
258 B
Nix
15 lines
258 B
Nix
{
|
|
programs.nixvim.plugins.hop.enable = true;
|
|
programs.nixvim.keymaps = [
|
|
{
|
|
mode = "n";
|
|
key = "<Leader>hw";
|
|
action = ":HopWord<CR>";
|
|
}
|
|
{
|
|
mode = "n";
|
|
key = "<Leader>hl";
|
|
action = ":HopLine<CR>";
|
|
}
|
|
];
|
|
}
|