summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-nvim.nix
blob: 0b7b42135a0b8d4d123aedcf489557d60732ea5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  config,
  lib,
  ...
}:
{
  xdg.configFile = {
    "matugen/templates/neovim.json" = {
      text = ''
        {
            "mode": "{{mode}}",
            "source_color":"{{colors.primary.default.hex}}",
            "background":"{{colors.background.default.hex}}"
        }
      '';
    };
  };
}