plugins: Replace null-ls with none-ls

null-ls is unmaintained as of August 2023 (see
https://github.com/jose-elias-alvarez/null-ls.nvim/issues/1621). none-ls
appears to be the accepted replacement fork.
This commit is contained in:
Kalle Jepsen 2023-10-21 12:35:39 +02:00
commit 49c0a5962f
4 changed files with 21 additions and 21 deletions

View file

@ -11,7 +11,7 @@ in {
config = mkIf cfg.null-ls.enable (mkMerge [
{
vim.lsp.enable = true;
vim.startPlugins = ["null-ls"];
vim.startPlugins = ["none-ls"];
vim.luaConfigRC.null_ls-setup = nvim.dag.entryAnywhere ''
local null_ls = require("null-ls")