nix/home/file/nvim/module/key/Cmd.nix

12 lines
197 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
text = ''
-- Remap ; to :.
rekey_normal(";", ":")
rekey_visual(";", ":")
2024-11-04 04:37:29 +03:00
-- Repeat previous command.
rekey_normal("<Leader>.", "@:")
rekey_visual("<Leader>.", "@:")
'';
}