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

12 lines
180 B
Nix
Raw Normal View History

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