16 lines
298 B
Nix
16 lines
298 B
Nix
|
{ 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
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|