2023-11-07 01:50:27 +01:00
|
|
|
{lib, ...}: let
|
|
|
|
inherit (lib) mkEnableOption mkOption types;
|
|
|
|
in {
|
2023-02-27 15:53:34 +01:00
|
|
|
options.vim = {
|
|
|
|
autopairs = {
|
2023-06-05 22:10:25 +02:00
|
|
|
enable = mkEnableOption "autopairs" // {default = false;};
|
2023-02-27 15:53:34 +01:00
|
|
|
|
|
|
|
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-11-04 12:30:04 +01:00
|
|
|
description = ''map <CR> on insert mode'';
|
2023-02-27 15:53:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|