13 lines
192 B
Nix
13 lines
192 B
Nix
{ ... }:
|
|
{
|
|
text = ''
|
|
leader = " "
|
|
|
|
vim.g.mapleader = leader
|
|
vim.g.maplocalleader = leader
|
|
|
|
-- Disable key press timeout.
|
|
vim.cmd("set notimeout nottimeout")
|
|
'';
|
|
}
|