nix-community.nixvim/tests/test-sources/plugins/lsp/jsonls.nix
2024-08-19 20:52:09 -05:00

22 lines
401 B
Nix

{
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;
settings = {
format = {
enable = true;
};
validate = {
enable = true;
};
};
};
};
};
}