mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-03-07 20:18:07 +01:00
10 lines
83 B
Nix
10 lines
83 B
Nix
{ pkgs }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
ripgrep
|
|
git
|
|
];
|
|
}
|
|
|