new colorscheme

This commit is contained in:
2025-02-06 21:10:34 +02:00
parent a3f3abb460
commit 90233808c0
3 changed files with 16 additions and 2 deletions

View File

@ -0,0 +1,12 @@
{
lib,
config,
...
}: {
options = {
monokai-pro.enable = lib.mkEnableOption "Enable monokai pro module";
};
config = lib.mkIf config.monokai-pro.enable {
colorschemes.monokai-pro.enable = true;
};
}