nix-community.nixvim/tests/test-sources/plugins/lsp/jsonls.nix

23 lines
401 B
Nix
Raw Normal View History

2024-04-30 09:24:32 +02:00
{
example = {
plugins.lsp = {
enable = true;
servers.jsonls = {
# TODO: re-enable when pkg is fixed and available
# https://github.com/NixOS/nixpkgs/pull/335559
# enable = true;
2024-04-30 09:24:32 +02:00
settings = {
format = {
enable = true;
};
validate = {
enable = true;
};
};
};
};
};
}