nvf/modules/terminal/toggleterm/toggleterm.nix

30 lines
768 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib;
2023-03-31 02:20:35 +00: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 11:16:43 +00:00
lazygit = {
enable = mkEnableOption "Enable LazyGit integration";
direction = mkOption {
type = types.enum ["horizontal" "vertical" "tab" "float"];
default = "float";
description = "Direction of the lazygit window";
};
};
};
}