nix/home/config/nvim/module/key/Leader.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")
'';
}