mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
22 lines
496 B
Nix
22 lines
496 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
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";
|
|
};
|
|
};
|
|
}
|