mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
25 lines
551 B
Nix
25 lines
551 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.terminal.toggleterm;
|
||
|
in {
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
}
|