starter/lua/plugins/null-ls.lua

8 lines
183 B
Lua
Raw Normal View History

2023-09-21 19:30:07 +08:00
return {
"jose-elias-alvarez/null-ls.nvim",
opts = function(_, opts)
local nls = require("null-ls")
table.insert(opts.sources, nls.builtins.formatting.prettierd)
end,
}