2023-02-27 20:28:37 +01:00
|
|
|
{
|
2023-04-27 12:52:34 +02:00
|
|
|
pkgs,
|
2023-02-27 20:28:37 +01:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib;
|
2023-03-31 04:20:35 +02:00
|
|
|
with builtins; {
|
2023-02-27 20:28:37 +01:00
|
|
|
options.vim.terminal.toggleterm = {
|
2023-10-21 19:15:36 +02:00
|
|
|
enable = mkEnableOption "toggleterm as a replacement to built-in terminal command";
|
2023-04-05 00:06:30 +02:00
|
|
|
mappings = {
|
|
|
|
open = mkOption {
|
2023-04-11 14:38:27 +02:00
|
|
|
type = types.nullOr types.str;
|
2023-04-05 00:06:30 +02:00
|
|
|
description = "The keymapping to open toggleterm";
|
|
|
|
default = "<c-t>";
|
|
|
|
};
|
|
|
|
};
|
2023-06-05 22:10:25 +02:00
|
|
|
|
2023-02-27 20:28:37 +01:00
|
|
|
direction = mkOption {
|
|
|
|
type = types.enum ["horizontal" "vertical" "tab" "float"];
|
|
|
|
default = "horizontal";
|
|
|
|
description = "Direction of the terminal";
|
|
|
|
};
|
2023-06-05 22:10:25 +02:00
|
|
|
|
2023-02-27 20:28:37 +01:00
|
|
|
enable_winbar = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable winbar";
|
|
|
|
};
|
2023-06-05 22:10:25 +02:00
|
|
|
|
2023-04-24 13:16:43 +02:00
|
|
|
lazygit = {
|
2023-06-05 22:10:25 +02:00
|
|
|
enable = mkEnableOption "LazyGit integration";
|
2023-04-24 13:16:43 +02:00
|
|
|
direction = mkOption {
|
|
|
|
type = types.enum ["horizontal" "vertical" "tab" "float"];
|
|
|
|
default = "float";
|
|
|
|
description = "Direction of the lazygit window";
|
|
|
|
};
|
2023-06-05 22:10:25 +02:00
|
|
|
|
2023-04-27 12:52:34 +02:00
|
|
|
package = mkOption {
|
|
|
|
type = with types; nullOr package;
|
|
|
|
default = pkgs.lazygit;
|
2023-04-28 08:49:31 +02:00
|
|
|
description = "The package that should be used for lazygit. Setting it to null will attempt to use lazygit from your PATH";
|
2023-04-27 12:52:34 +02:00
|
|
|
};
|
2023-05-03 00:24:34 +02:00
|
|
|
|
|
|
|
mappings = {
|
|
|
|
open = mkMappingOption "Open lazygit [toggleterm]" "<leader>gg";
|
|
|
|
};
|
2023-04-24 13:16:43 +02:00
|
|
|
};
|
2023-02-27 20:28:37 +01:00
|
|
|
};
|
|
|
|
}
|