blob: 7661b81aa1446ab8463ed3f26e520fdfaee8263b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
description = "Quickstart configurations for the Nvim LSP client";
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs { system = "x86_64-linux";};
in {
devShell."x86_64-linux" = pkgs.mkShell {
buildInputs = [
pkgs.stylua
pkgs.luaPackages.luacheck
];
};
};
}
|