plugin/none-ls: Implement all builtins (#1169)

* plugins/none-ls: Use upstream builtins.json to list sources

This avoids the need to define sources in nixvim. We only need to define
a mapping from source names to packages.

This commit does not yet introduce sources for the newly available builtins

* plugin/none-ls: Enable all known sources in tests

* plugins/none-ls: Add all missing sources
This commit is contained in:
traxys 2024-03-01 13:24:14 +01:00 committed by GitHub
parent 8c0bdb17e9
commit f9280a6865
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 504 additions and 410 deletions

View file

@ -50,6 +50,10 @@
inherit pkgs lib helpers;
config = {};
};
nonels-sources-options = import ../plugins/none-ls/servers.nix {
inherit pkgs lib helpers;
config = {};
};
};
inherit namespace;
})