mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2026-05-23 07:48:08 +02:00
8 lines
220 B
Nix
8 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`
|
||
|
|
'';
|
||
|
|
}
|