plugins/neo-tree: init module

This commit is contained in:
raf 2024-04-14 15:49:16 +03:00
commit 6d90adf793
Signed by: NotAShelf
GPG key ID: AF26552424E53993
6 changed files with 42 additions and 1 deletions

View file

@ -0,0 +1,9 @@
{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" {};
};
}