mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-15 08:55:58 +01:00
10 lines
261 B
Nix
10 lines
261 B
Nix
|
{lib, ...}: let
|
||
|
inherit (lib.options) mkEnableOption;
|
||
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
||
|
in {
|
||
|
options.vim.filetree.nvimTree = {
|
||
|
enable = mkEnableOption "filetree via neo-tree.nvim";
|
||
|
setupOpts = mkPluginSetupOption "neo-tree" {};
|
||
|
};
|
||
|
}
|