mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-03-07 12:11:47 +01:00
9 lines
82 B
Nix
9 lines
82 B
Nix
{ pkgs }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
ripgrep
|
|
git
|
|
];
|
|
}
|