neovim-flake/modules/autopairs/nvim-autopairs/nvim-autopairs.nix

44 lines
968 B
Nix
Raw Normal View History

{
lib,
config,
...
}:
with lib;
2023-03-31 04:20:35 +02:00
with builtins; {
options.vim = {
autopairs = {
enable = mkOption {
type = types.bool;
default = false;
description = "Enable autopairs";
};
type = mkOption {
type = types.enum ["nvim-autopairs"];
default = "nvim-autopairs";
description = "Set the autopairs type. Options: nvim-autopairs [nvim-autopairs]";
};
nvim-compe = {
map_cr = mkOption {
type = types.bool;
default = true;
2023-04-17 23:59:23 +02:00
description = nvim.nmd.asciiDoc ''map <CR> on insert mode'';
};
map_complete = mkOption {
type = types.bool;
default = true;
description = "auto insert `(` after select function or method item";
};
auto_select = mkOption {
type = types.bool;
default = false;
description = "auto select first item";
};
};
};
};
}