mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
7 lines
168 B
Nix
7 lines
168 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
# vim dictionaries are, in theory, compatible with JSON
|
||
|
toVimDict = args: builtins.toJSON
|
||
|
(lib.filterAttrs (n: v: !builtins.isNull v) args);
|
||
|
}
|