summaryrefslogtreecommitdiffstats
path: root/modules/plugins/autopairs/nvim-autopairs/config.nix
blob: 1a55273a0ebcc4315163064b21fe29e98331449f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  config,
  lib,
  ...
}: let
  inherit (lib.modules) mkIf;
  cfg = config.vim.autopairs.nvim-autopairs;
in {
  config = mkIf cfg.enable {
    vim.lazy.plugins.nvim-autopairs = {
      package = "nvim-autopairs";
      setupModule = "nvim-autopairs";
      setupOpts = cfg.setupOpts;
      event = ["InsertEnter"];
    };
  };
}