nvim-lspconfig/flake.nix
Justin M. Keyes 2d113e6c02 ci: emmylua
- Introduce emmylua CI job to type-check code.
- Drop old analyzers that haven't reported anything useful in a long
  time and are redundant with luals/emmylua.
2025-11-14 00:14:19 -05:00

22 lines
578 B
Nix

{
description = "Quickstart configurations for the Nvim LSP client";
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
inputs.systems.url = "github:nix-systems/default";
outputs = { self, nixpkgs, systems }: let
supportedSystems = nixpkgs.lib.genAttrs (import systems);
forEachSystem = function: supportedSystems (system:
function nixpkgs.legacyPackages.${system});
in {
devShells = forEachSystem (pkgs: {
default = pkgs.mkShell {
packages = [
pkgs.stylua
pkgs.luajitPackages.vusted
];
};
});
};
}