summaryrefslogtreecommitdiffstats
path: root/modules/plugins/mini/snippets/config.nix
blob: 9dc7aab15ae983bbf86c6d808e889826904542f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  config,
  lib,
  ...
}: let
  inherit (lib.modules) mkIf;
  inherit (lib.nvim.dag) entryAnywhere;
  inherit (lib.nvim.lua) toLuaObject;

  cfg = config.vim.mini.snippets;
in {
  vim = mkIf cfg.enable {
    startPlugins = ["mini-snippets"];

    pluginRC.mini-snippets = entryAnywhere ''
      require("mini.snippets").setup(${toLuaObject cfg.setupOpts})
    '';
  };
}