2025-08-23T20:01:58+02:00

This commit is contained in:
2025-08-23 20:01:58 +02:00
parent d52345680e
commit 905b24aae9
+15 -16
View File
@@ -47,26 +47,25 @@
}; };
}; };
keymaps = [
{
key = "s";
action.__raw = ''
function()
-- type two letters and jump to that bigram anywhere
require("hop").hint_char2({
current_line_only = false,
multi_windows = false, -- set true if you want to hop across all windows
})
end
'';
options = { remap = true; };
}
];
# Nix expressions in Neovim # Nix expressions in Neovim
nix.enable = true; nix.enable = true;
}; };
keymaps = [
{
key = "s";
action.__raw = ''
function()
-- type two letters and jump to that bigram anywhere
require("hop").hint_char2({
current_line_only = false,
multi_windows = false, -- set true if you want to hop across all windows
})
end
'';
options = { remap = true; };
}
];
} }