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

12 lines
180 B
Nix

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