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