mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-10 14:39:48 +01:00
15 lines
388 B
Nix
15 lines
388 B
Nix
|
{lib, ...}: let
|
||
|
inherit (lib.options) mkEnableOption;
|
||
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
||
|
inherit (lib.nvim.binds) mkMappingOption;
|
||
|
in {
|
||
|
options.vim.utility.outline.aerial-nvim = {
|
||
|
enable = mkEnableOption "Aerial.nvim";
|
||
|
setupOpts = mkPluginSetupOption "aerial.nvim" {};
|
||
|
|
||
|
mappings = {
|
||
|
toggle = mkMappingOption "Toggle aerial window" "gO";
|
||
|
};
|
||
|
};
|
||
|
}
|