chore(nvim): upgrade eslint_d to v14 to support eslint v9
This commit is contained in:
parent
eabc8c0582
commit
98dc94d2a7
@ -1,4 +1,8 @@
|
|||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
pkgsMaster,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
plugins.lint = {
|
plugins.lint = {
|
||||||
enable = true;
|
enable = true;
|
||||||
lintersByFt = {
|
lintersByFt = {
|
||||||
@ -16,5 +20,6 @@
|
|||||||
|
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
statix
|
statix
|
||||||
|
pkgsMaster.eslint_d
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -6,10 +6,11 @@
|
|||||||
inherit (pkgs) system;
|
inherit (pkgs) system;
|
||||||
nixvim = inputs.nixvim.legacyPackages.${system};
|
nixvim = inputs.nixvim.legacyPackages.${system};
|
||||||
icons = import ./config/icons.nix;
|
icons = import ./config/icons.nix;
|
||||||
|
pkgsMaster = inputs.master.legacyPackages.${system};
|
||||||
nixvimModule = {
|
nixvimModule = {
|
||||||
pkgs = inputs.unstable.legacyPackages.${system};
|
pkgs = inputs.unstable.legacyPackages.${system};
|
||||||
module = import ./config;
|
module = import ./config;
|
||||||
extraSpecialArgs = {inherit icons;};
|
extraSpecialArgs = {inherit icons pkgsMaster;};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
nixvim.makeNixvimWithModule nixvimModule
|
nixvim.makeNixvimWithModule nixvimModule
|
||||||
|
Loading…
x
Reference in New Issue
Block a user