nix-community.nixvim/plugins
cswimr a5147a36f9
plugins/schemastore: set the correct jsonls default
the JSON language server has the following [configuration structure](6fef251f8f/extensions/json-language-features/server/src/jsonServer.ts (L167-L179)):
```ts
    // The settings interface describes the server relevant settings part
    interface Settings {
        json?: {
            schemas?: JSONSchemaSettings[];
            format?: { enable?: boolean };
            validate?: { enable?: boolean };
            resultLimit?: number;
        };
        http?: {
            proxy?: string;
            proxyStrictSSL?: boolean;
        };
    }
```
So, we should be mkDefault'ing `validate.enable` instead of `validate`, as `validate` is expected to be an `Object` containing `enable` as a boolean.
2025-02-06 14:33:08 -06:00
..
by-name plugins/schemastore: set the correct jsonls default 2025-02-06 14:33:08 -06:00
cmp treewide: use mkWarnings wherever possible 2025-01-20 12:25:33 +00:00
colorschemes treewide: use boolean comparison to simplify the code base 2025-01-29 18:04:00 +01:00
lsp lib: Harmonize package options which may not exist in nixpkgs 2025-01-31 22:55:38 +00:00
pluginmanagers treewide: neovim-plugin -> plugins 2024-12-22 10:04:00 +00:00
default.nix colorschemes/monokai-pro: init 2025-01-06 23:07:53 +00:00
deprecation.nix treewide: use mkWarnings where possible 2025-01-29 15:57:14 +01:00
TEMPLATE.nix treewide: neovim-plugin -> plugins 2024-12-22 10:04:00 +00:00