2023-02-27 19:28:37 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib;
|
2023-03-31 02:20:35 +00:00
|
|
|
with builtins; {
|
2023-02-27 19:28:37 +00:00
|
|
|
options.vim.terminal.toggleterm = {
|
|
|
|
enable = mkEnableOption "Enable toggleterm as a replacement to built-in terminal command";
|
2023-04-04 22:06:30 +00:00
|
|
|
mappings = {
|
|
|
|
open = mkOption {
|
2023-04-11 12:38:27 +00:00
|
|
|
type = types.nullOr types.str;
|
2023-04-04 22:06:30 +00:00
|
|
|
description = "The keymapping to open toggleterm";
|
|
|
|
default = "<c-t>";
|
|
|
|
};
|
|
|
|
};
|
2023-02-27 19:28:37 +00:00
|
|
|
direction = mkOption {
|
|
|
|
type = types.enum ["horizontal" "vertical" "tab" "float"];
|
|
|
|
default = "horizontal";
|
|
|
|
description = "Direction of the terminal";
|
|
|
|
};
|
|
|
|
enable_winbar = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable winbar";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|