]> Git — Sourcephile - julm/julm-nix.git/blob - home-manager/profiles/nvim/lua/plugins/nvim-lint.lua
neovim: configure, using ghostty and tmux
[julm/julm-nix.git] / home-manager / profiles / nvim / lua / plugins / nvim-lint.lua
1 -- An asynchronous linter plugin for Neovim complementary to
2 -- the built-in Language Server Protocol support.
3 -- https://github.com/mfussenegger/nvim-lint
4 return {
5 "nvim-lint",
6 event = { "BufEnter" },
7 after = function()
8 require("lint").linters_by_ft = {
9 haskell = { "hlint" },
10 lua = { "luacheck" },
11 nix = { "deadnix", "statix" },
12 sh = { "shellcheck" },
13 }
14 end,
15 }