neovim-flake/modules/plugins/utility/mkdir/mkdir.nix

8 lines
220 B
Nix
Raw Normal View History

2025-02-25 21:03:46 -05:00
{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`
'';
}