ensure plugins are exported in overlay

This commit is contained in:
iofq 2025-08-15 00:59:00 -05:00
parent 7165161856
commit ac26b74e43
5 changed files with 12 additions and 7 deletions

View file

@ -84,7 +84,6 @@ return {
notify_no_formatters = false,
formatters_by_ft = {
json = { 'jq' },
puppet = { 'puppet-lint' },
lua = { 'stylua' },
python = { 'ruff' },
nix = { 'nixfmt' },
@ -111,7 +110,6 @@ return {
require('lint').linters_by_ft = {
docker = { 'hadolint' },
yaml = { 'yamllint' },
puppet = { 'puppet-lint' },
sh = { 'shellcheck' },
go = { 'golangcilint' },
ruby = { 'rubocop' },
@ -124,7 +122,7 @@ return {
group = vim.api.nvim_create_augroup('lint', { clear = true }),
callback = function()
if vim.bo.modifiable then
require('lint').try_lint()
require('lint').try_lint(nil, { ignore_errors = true })
end
end,
})