mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkOption mkEnableOption;
|
|
inherit (lib.nvim.binds) mkMappingOption;
|
|
inherit (lib.types) nullOr str enum bool package;
|
|
in {
|
|
options.vim.terminal.toggleterm = {
|
|
enable = mkEnableOption "toggleterm as a replacement to built-in terminal command";
|
|
mappings = {
|
|
open = mkOption {
|
|
type = nullOr str;
|
|
description = "The keymapping to open toggleterm";
|
|
default = "<c-t>";
|
|
};
|
|
};
|
|
|
|
direction = mkOption {
|
|
type = enum ["horizontal" "vertical" "tab" "float"];
|
|
default = "horizontal";
|
|
description = "Direction of the terminal";
|
|
};
|
|
|
|
enable_winbar = mkOption {
|
|
type = bool;
|
|
default = false;
|
|
description = "Enable winbar";
|
|
};
|
|
|
|
lazygit = {
|
|
enable = mkEnableOption "LazyGit integration";
|
|
direction = mkOption {
|
|
type = enum ["horizontal" "vertical" "tab" "float"];
|
|
default = "float";
|
|
description = "Direction of the lazygit window";
|
|
};
|
|
|
|
package = mkOption {
|
|
type = nullOr package;
|
|
default = pkgs.lazygit;
|
|
description = "The package that should be used for lazygit. Setting it to null will attempt to use lazygit from your PATH";
|
|
};
|
|
|
|
mappings = {
|
|
open = mkMappingOption "Open lazygit [toggleterm]" "<leader>gg";
|
|
};
|
|
};
|
|
};
|
|
}
|