11 lines
248 B
Lua
11 lines
248 B
Lua
-- Customize None-ls sources
|
|
|
|
---@type LazySpec
|
|
return {
|
|
"nvimtools/none-ls.nvim",
|
|
dependencies = { "nvimtools/none-ls-extras.nvim" },
|
|
opts = function(_, config)
|
|
config.sources = {}
|
|
return config -- return final config table
|
|
end,
|
|
}
|