We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd1b230 commit 6beae81Copy full SHA for 6beae81
flake.nix
@@ -30,6 +30,7 @@
30
pkgs.lua5_1
31
pkgs.just
32
pkgs.stylua
33
+ pkgs.wget
34
];
35
};
36
justfile
@@ -1,6 +1,11 @@
1
deps:
2
#!/usr/bin/env bash
3
set -euo pipefail
4
+ mkdir -p deps
5
+ if [ ! -d "deps/plenary.nvim" ]; then
6
+ git -C deps clone https://github.com/nvim-lua/plenary.nvim
7
+ fi
8
+
9
if [ ! -d "nvim-test" ]; then
10
git clone --depth 1 --branch v1.1.1 https://github.com/lewis6991/nvim-test
11
fi
0 commit comments