{ lib, pkgs, config, ... }: let cfg = config.mae.nvim.html; in with lib; { options.mae.nvim.html.enable = mkEnableOption "Enable html/css support in nvim"; config = mkIf cfg.nix.enable { programs.neovim = { plugins = with pkgs.vimPlugins; [ emmet-vim ]; }; }; }