-- -- Author : Dennis Eriksen -- File : shell.lua -- Created : 2024-02-15 -- local fmts = {} if vim.loop.os_uname().sysname ~= "OpenBSD" then fmts = { bash = { "shellcheck", "shfmt" }, sh = { "shellcheck", "shfmt" }, } else -- there is no shfmt on OpenBSD fmts = { bash = { "shellcheck" }, sh = { "shellcheck" }, } end return { -- formatting { -- https://github.com/stevearc/conform.nvim "stevearc/conform.nvim", opts = { formatters_by_ft = fmts, }, }, -- linting { -- https://github.com/mfussenegger/nvim-lint "mfussenegger/nvim-lint", opts = { linters_by_ft = { bash = { "shellcheck" }, sh = { "shellcheck" }, zsh = { "zsh" }, }, }, }, }