mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
Re-enable after https://github.com/NixOS/nixpkgs/pull/335559 is available in nixos-unstable.
22 lines
401 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|