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

13 lines
192 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
leader = " "
2024-04-06 03:03:58 +03:00
vim.g.mapleader = leader
vim.g.maplocalleader = leader
2024-04-06 03:03:58 +03:00
-- Disable key press timeout.
vim.cmd("set notimeout nottimeout")
'';
2024-04-06 03:03:58 +03:00
}