mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:20:05 +08:00
18 lines
318 B
Nix
18 lines
318 B
Nix
{
|
|
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
|
|
];
|
|
};
|
|
|
|
};
|
|
}
|