1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2024-12-27 09:29:49 +01:00
neovim-flake/modules/utility/colorizer/config.nix
2023-03-31 05:20:35 +03:00

15 lines
188 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.utility.colorizer;
in {
config = mkIf (cfg.enable) {
vim.startPlugins = [
"colorizer"
];
};
}