Skip to content

Commit 40877be

Browse files
authored
fix(nextls): only start if explicitly enabled (#126)
1 parent 340411e commit 40877be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/elixir/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function M.setup(opts)
6161
credo.setup(opts.credo)
6262
end
6363

64-
if enabled(opts.nextls.enable) then
64+
if opts.nextls.enable == true then
6565
nextls.setup(opts.nextls)
6666
end
6767
end

0 commit comments

Comments
 (0)