nix-home/packages/common/nki-kakoune/utils.nix

12 lines
324 B
Nix

{ lib, writeTextDir, ... }:
{
mkFacesScript =
name: faces:
writeTextDir "share/kak/autoload/${name}/faces.kak" ''
hook global KakBegin .* %{
${lib.concatStringsSep "\n" (
builtins.attrValues (builtins.mapAttrs (name: face: " face global ${name} \"${face}\"") faces)
)}
}
'';
}