mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
20 lines
242 B
Nix
20 lines
242 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.markdown;
|
||
|
in {
|
||
|
options.vim.markdown = {
|
||
|
enable = mkEnableOption "markdown tools and plugins";
|
||
|
};
|
||
|
|
||
|
config = mkIf (cfg.enable) {
|
||
|
/*
|
||
|
...
|
||
|
*/
|
||
|
};
|
||
|
}
|