1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2024-12-27 00:29:48 +01:00
neovim-flake/modules/markdown/module.nix

20 lines
249 B
Nix
Raw Normal View History

{
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) {
/*
...
*/
};
}