fix(nvim-custom): add dependencies to lint config

This commit is contained in:
Michael Thomas 2024-06-03 20:21:01 -04:00
parent 4d876ac1cf
commit 5c50fa6379

@ -1,8 +1,8 @@
{
{pkgs, ...}: {
plugins.lint = {
enable = true;
lintersByFt = {
nix = ["statix"];
nix = ["satix"];
lua = ["selene"];
python = ["flake8"];
javascript = ["eslint_d"];
@ -13,4 +13,8 @@
java = ["checkstyle"];
};
};
extraPackages = with pkgs; [
statix
];
}