devos/users/modules/neovim/html.nix

16 lines
298 B
Nix
Raw Normal View History

2022-08-20 00:04:16 +02:00
{ 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
];
};
};
}