blob: c591e6e674fc07532f7d82ad26a2ca54ee899475 (
plain)
1
2
3
4
5
6
7
|
{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`
'';
}
|