1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00
nixvim/plugins/helpers.nix

6 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);
}