nix/home/config/nvim/module/key/Leader.nix
2024-11-06 01:07:30 +03:00

12 lines
180 B
Nix

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