{ pkgs, config, lib, ... }: with lib; with builtins; let cfg = config.vim.languages.markdown; in { options.vim.languages.markdown = { enable = mkEnableOption "Markdown language support"; glow.enable = mkOption { type = types.bool; default = true; description = "Enable markdown preview in neovim with glow"; }; }; }