nix-community.nixvim/plugins/utils/nvim-autopairs.nix
2023-02-20 10:42:13 +00:00

63 lines
1.5 KiB
Nix

{
pkgs,
config,
lib,
...
}:
with lib; let
cfg = config.plugins.nvim-autopairs;
helpers = import ../helpers.nix {inherit lib;};
in {
options.plugins.nvim-autopairs = {
enable = mkEnableOption "nvim-autopairs";
package = helpers.mkPackageOption "nvim-autopairs" pkgs.vimPlugins.nvim-autopairs;
pairs = mkOption {
type = types.nullOr (types.attrsOf types.str);
default = null;
description = "Characters to pair up";
};
disabledFiletypes = mkOption {
type = types.nullOr (types.listOf types.str);
default = null;
description = "Disabled filetypes";
};
breakLineFiletypes = mkOption {
type = types.nullOr (types.listOf types.str);
default = null;
description = "Filetypes to break lines on";
};
htmlFiletypes = mkOption {
type = types.nullOr (types.listOf types.str);
default = null;
description = "Filetypes to treat as HTML";
};
ignoredNextChar = mkOption {
type = types.nullOr types.str;
default = null;
description = "Regexp to ignore if it matches the next character";
};
};
config = let
options = {
pairs_map = cfg.pairs;
disable_filetype = cfg.disabledFiletypes;
break_line_filetype = cfg.breakLineFiletypes;
html_break_line_filetype = cfg.htmlFiletypes;
ignored_next_char = cfg.ignoredNextChar;
};
in
mkIf cfg.enable {
extraPlugins = [cfg.package];
extraConfigLua = ''
require('nvim-autopairs').setup(${helpers.toLuaObject options})
'';
};
}