repos / neovimcraft

website that makes it easy to find neovim plugins
git clone https://github.com/neurosnap/neovimcraft.git

commit
16bbee6
parent
97f350e
author
Eric Bower
date
2021-11-25 23:35:13 +0000 UTC
use nix to manage node version and gcloud
1 files changed,  +9, -0
A shell.nix
+9, -0
 1@@ -0,0 +1,9 @@
 2+let pkgs = import <nixpkgs> {};
 3+
 4+in pkgs.mkShell rec {
 5+  name = "neovimcraft";
 6+
 7+  buildInputs = with pkgs; [
 8+    nodejs yarn google-cloud-sdk
 9+  ];
10+}