dotfiles/.config/nvim/lua/plugins/extras/linting/typos.lua
2025-09-17 23:43:44 +02:00

18 lines
331 B
Lua

return {
{
"mason-org/mason.nvim",
opts = {
ensure_installed = {
"typos",
},
},
},
{
"mfussenegger/nvim-lint",
opts = function(_, opts)
opts.linters_by_ft["*"] = opts.linters_by_ft["*"] or {}
table.insert(opts.linters_by_ft["*"], "typos")
return opts
end,
},
}