mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-04-04 03:51:52 +00:00
7 lines
220 B
Nix
7 lines
220 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.vim.utility.mkdir.enable = mkEnableOption ''
|
|
parent directory creation when editing a nested path that does not exist using `mkdir.nvim`
|
|
'';
|
|
}
|