mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 08:35:53 +02:00
* FEATURE: use none-ls instead of null-ls Fixes #1516 * fix(none-ls): automatically migrate null-ls to none-ls * feat(config): show warning if user config contains renamed references --------- Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
15 lines
326 B
Lua
15 lines
326 B
Lua
return {
|
|
{
|
|
"williamboman/mason.nvim",
|
|
opts = function(_, opts)
|
|
table.insert(opts.ensure_installed, "prettierd")
|
|
end,
|
|
},
|
|
{
|
|
"nvimtools/none-ls.nvim",
|
|
opts = function(_, opts)
|
|
local nls = require("null-ls")
|
|
table.insert(opts.sources, nls.builtins.formatting.prettierd)
|
|
end,
|
|
},
|
|
}
|