nvf/modules/terminal/toggleterm/toggleterm.nix

52 lines
1.3 KiB
Nix
Raw Normal View History

{
2023-04-27 10:52:34 +00:00
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";
2023-04-04 22:06:30 +00:00
mappings = {
open = mkOption {
type = nullOr str;
2023-04-04 22:06:30 +00:00
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";
};
2023-04-24 11:16:43 +00:00
lazygit = {
enable = mkEnableOption "LazyGit integration";
2023-04-24 11:16:43 +00:00
direction = mkOption {
type = enum ["horizontal" "vertical" "tab" "float"];
2023-04-24 11:16:43 +00:00
default = "float";
description = "Direction of the lazygit window";
};
2023-04-27 10:52:34 +00:00
package = mkOption {
type = nullOr package;
2023-04-27 10:52:34 +00:00
default = pkgs.lazygit;
2023-04-28 06:49:31 +00:00
description = "The package that should be used for lazygit. Setting it to null will attempt to use lazygit from your PATH";
2023-04-27 10:52:34 +00:00
};
2023-05-02 22:24:34 +00:00
mappings = {
open = mkMappingOption "Open lazygit [toggleterm]" "<leader>gg";
};
2023-04-24 11:16:43 +00:00
};
};
}