-- -- Author : Dennis Eriksen -- File : yaml.lua -- Created : 2024-02-15 -- local fmts = {} local lints = {} -- if NOT OpenBSD if vim.loop.os_uname().sysname ~= "OpenBSD" then fmts = { "prettier" } lints = { yaml = { "yamllint" } } -- if OpenBSD else -- there is no yamlfmt on OpenBSD fmts = { "yq" } end return { { -- https://github.com/stevearc/conform.nvim "stevearc/conform.nvim", opts = { formatters_by_ft = { yaml = fmts, }, }, }, { -- https://github.com/mfussenegger/nvim-lint "mfussenegger/nvim-lint", opts = { linters_by_ft = lints, }, }, }