feat!: make conform.nvim and nvim-lint the default formatters/linters

This commit is contained in:
Folke Lemaitre 2023-10-10 22:12:33 +02:00
parent 1599edd10a
commit 90a8200e7c
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
13 changed files with 148 additions and 64 deletions

View file

@ -37,8 +37,7 @@ return {
return
end
local nls = require("null-ls")
opts.sources = opts.sources or {}
vim.list_extend(opts.sources, {
opts.sources = vim.list_extend(opts.sources or {}, {
nls.builtins.diagnostics.credo,
})
end,