1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:20:05 +08:00
SpaceVim/bundle/nvim-lspconfig/flake.nix
2021-10-05 15:13:10 +08:00

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
];
};
};
}