mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
fix: disable none-ls
This commit is contained in:
parent
1d622094b9
commit
14284a94ca
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
local M = {}
|
local M = {}
|
||||||
local disable = pcode.disable_null_ls or false
|
local disable = pcode.disable_null_ls or false
|
||||||
if not require("user.utils.cfgstatus").cheack() then
|
if require("user.utils.cfgstatus").cheack() then
|
||||||
disable = true
|
disable = true
|
||||||
end
|
end
|
||||||
if disable then
|
if not disable then
|
||||||
M = {
|
M = {
|
||||||
{
|
{
|
||||||
"nvimtools/none-ls.nvim",
|
"nvimtools/none-ls.nvim",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue