Skip to content

Commit cce3474

Browse files
author
Ali Shahid
committed
[null-ls.nvim] minor refactor
1 parent 8d174be commit cce3474

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/plugins/null-ls_nvim.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
-- https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/BUILTINS.md
1818

1919
-- safley import null-ls
20-
local null_imported_ok, null = pcall(require, "null-ls")
21-
if not null_imported_ok then return end
20+
local imported_null, null = pcall(require, "null-ls")
21+
if not imported_null then return end
2222

2323
local formatting = null.builtins.formatting
2424
-- local completion = null.builtins.completion

0 commit comments

Comments
 (0)