dotfiles/.config/nvim/lua/plugins/extras/linting/typos.lua
2024-01-07 01:32:27 +01:00

17 lines
326 B
Lua

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