nvim/pack/acp/opt/nvim-lspconfig/flake.nix

19 lines
450 B
Nix
Raw Normal View History

2022-01-10 11:08:46 +00:00
{
description = "Quickstart configurations for the Nvim LSP client";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system}; in
rec {
devShell = pkgs.mkShell {
buildInputs = [
pkgs.stylua
pkgs.luaPackages.luacheck
];
};
}
);
}