We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c206df commit 3b8aab4Copy full SHA for 3b8aab4
lua/null-ls/init.lua
@@ -1,3 +1,8 @@
1
+local ok, _ = pcall(require, "plenary.async")
2
+if not ok then
3
+ error("none-ls.nvim requires plenary.nvim - https://github.com/nvim-lua/plenary.nvim")
4
+end
5
+
6
local c = require("null-ls.config")
7
local helpers = require("null-ls.helpers")
8
local sources = require("null-ls.sources")
0 commit comments