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

12 lines
197 B
Nix

{ ... }: {
text = ''
-- Remap ; to :.
rekey_normal(";", ":")
rekey_visual(";", ":")
-- Repeat previous command.
rekey_normal("<Leader>.", "@:")
rekey_visual("<Leader>.", "@:")
'';
}