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

12 lines
180 B
Nix
Raw Normal View History

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