-- An asynchronous linter plugin for Neovim complementary to -- the built-in Language Server Protocol support. -- https://github.com/mfussenegger/nvim-lint return { "nvim-lint", event = { "BufEnter" }, after = function() require("lint").linters_by_ft = { haskell = { "hlint" }, lua = { "luacheck" }, nix = { "deadnix", "statix" }, sh = { "shellcheck" }, } end, }