From 2fcc21dd42c7c20ca6112f0edfafc56922948217 Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Fri, 6 Mar 2026 22:51:10 +0000 Subject: Add PHP script to generate the markdown table of Neovim keymaps --- shell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell.nix (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..a57f451 --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +let + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-unstable"; + pkgs = import nixpkgs { config = {}; overlays = []; }; +in + +pkgs.mkShellNoCC { + packages = with pkgs; [ + php84 + php84Packages.composer + php84Packages.php-cs-fixer + php84Packages.php-codesniffer + ]; +} -- cgit v1.2.3-13-gbd6f