mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
28 lines
644 B
Lua
28 lines
644 B
Lua
local M = {}
|
|
if not (pcode.disable_null_ls or false) then
|
|
M = {
|
|
{
|
|
"nvimtools/none-ls.nvim",
|
|
lazy = true,
|
|
dependencies = {
|
|
{
|
|
"jayp0521/mason-null-ls.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
ensure_installed = pcode.null_ls_ensure_installed or {},
|
|
automatic_setup = true,
|
|
handlers = {},
|
|
},
|
|
config = function(_, opts)
|
|
require("mason-null-ls").setup(opts)
|
|
end,
|
|
},
|
|
"nvimtools/none-ls-extras.nvim",
|
|
},
|
|
event = "InsertEnter",
|
|
opts = {},
|
|
config = true,
|
|
},
|
|
}
|
|
end
|
|
return M
|