repos / neovimcraft

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

commit
3033555
parent
7234cd4
author
Eric Bower
date
2022-01-24 04:27:01 +0000 UTC
manual resources
2 files changed,  +18, -2
M scripts/resource.ts
+1, -1
1@@ -47,7 +47,7 @@ async function init() {
2     }),
3   );
4 
5-  const json = prettier.format(JSON.stringify(resourceFile), {
6+  const json = prettier.format(JSON.stringify(manualFile), {
7     parser: 'json',
8     printWidth: 100,
9   });
M src/lib/manual.json
+17, -1
 1@@ -1 +1,17 @@
 2-{"resources":[]}
 3+{
 4+  "resources": [
 5+    { "type": "github", "username": "jceb", "repo": "blinds.nvim", "tags": ["color"] },
 6+    {
 7+      "type": "github",
 8+      "username": "theory-of-everything",
 9+      "repo": "nii-nvim",
10+      "tags": ["preconfigured-configuration"]
11+    },
12+    {
13+      "type": "github",
14+      "username": "nvim-neo-tree",
15+      "repo": "neo-tree.nvim",
16+      "tags": ["file-explorer"]
17+    }
18+  ]
19+}