nixvim/config/plugins/cmp/schemastore.nix
Roel de Cort e02c129f4b
feat: add schemastore (#26)
- Add the schemastore plugin for easy completion of JSON and YAML files
(Github Actions, Kubernetes manifests etc.).
- Update flake inputs.
2024-09-01 02:05:10 +02:00

13 lines
138 B
Nix

{
plugins.schemastore = {
enable = true;
json = {
enable = true;
};
yaml = {
enable = true;
};
};
}