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

View File

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