From 4ca4c9cbf86f1153e80160e2618400776030d944 Mon Sep 17 00:00:00 2001 From: hankertrix <91734413+hankertrix@users.noreply.github.com> Date: Fri, 5 Jan 2024 12:38:02 +0800 Subject: [PATCH] Update null-ls to none-ls (#90) Null-ls is now unmaintained, so the package should direct users to the maintained fork. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8aea896..a39117f 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ not `mason.nvim` package names. event = { "BufReadPre", "BufNewFile" }, dependencies = { "williamboman/mason.nvim", - "jose-elias-alvarez/null-ls.nvim", + "nvimtools/none-ls.nvim", }, config = function() require("your.null-ls.config") -- require your null-ls config here (example below) @@ -86,7 +86,7 @@ not `mason.nvim` package names. ```vim Plug 'williamboman/mason.nvim' -Plug 'jose-elias-alvarez/null-ls.nvim' +Plug 'nvimtools/none-ls.nvim' Plug 'jay-babu/mason-null-ls.nvim' ```