mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 21:45:59 +01:00
19 lines
249 B
Nix
19 lines
249 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.markdown;
|
|
in {
|
|
options.vim.markdown = {
|
|
enable = mkEnableOption "Enable markdown tools and plugins";
|
|
};
|
|
|
|
config = mkIf (cfg.enable) {
|
|
/*
|
|
...
|
|
*/
|
|
};
|
|
}
|