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

13 lines
211 B
Nix

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