neovim-flake/modules/terminal/toggleterm/toggleterm.nix

36 lines
984 B
Nix
Raw Normal View History

{
2023-04-27 12:52:34 +02:00
pkgs,
config,
lib,
...
}:
with lib;
2023-03-31 04:20:35 +02:00
with builtins; {
options.vim.terminal.toggleterm = {
enable = mkEnableOption "Enable toggleterm as a replacement to built-in terminal command";
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";
};
2023-04-24 13:16:43 +02:00
lazygit = {
enable = mkEnableOption "Enable LazyGit integration";
direction = mkOption {
type = types.enum ["horizontal" "vertical" "tab" "float"];
default = "float";
description = "Direction of the lazygit window";
};
2023-04-27 12:52:34 +02:00
package = mkOption {
type = with types; nullOr package;
default = pkgs.lazygit;
description = "The package to use for lazygit, null means do not install automatically";
};
2023-04-24 13:16:43 +02:00
};
};
}