summaryrefslogtreecommitdiffstats
path: root/lua/user/lsp/null-ls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/user/lsp/null-ls.lua')
-rw-r--r--lua/user/lsp/null-ls.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/user/lsp/null-ls.lua b/lua/user/lsp/null-ls.lua
index 1dc7ace..389e68f 100644
--- a/lua/user/lsp/null-ls.lua
+++ b/lua/user/lsp/null-ls.lua
@@ -1,5 +1,5 @@
-local null_ls_status_ok, null_ls = pcall(require, "null-ls")
-if not null_ls_status_ok then
+local null_ls_ok, null_ls = pcall(require, "null-ls")
+if not null_ls_ok then
print "null-ls init failed"
return
end