initial
This commit is contained in:
14
config/utils/colorizer.nix
Normal file
14
config/utils/colorizer.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
colorizer.enable = lib.mkEnableOption "Enable nvim-colorizer module";
|
||||
};
|
||||
config = lib.mkIf config.colorizer.enable {
|
||||
plugins.colorizer = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user