Files
nixvim/shell.nix

9 lines
82 B
Nix

{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
ripgrep
git
];
}