16 lines
184 B
Nix
16 lines
184 B
Nix
|
{
|
||
|
configs,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
programs.nixvim = {
|
||
|
options = {
|
||
|
timeout = true;
|
||
|
timeoutlen = 300;
|
||
|
};
|
||
|
plugins.which-key = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|