12 lines
324 B
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)
|
|
)}
|
|
}
|
|
'';
|
|
}
|