Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neurosnap/neovimcraft
website that makes it easy to find neovim plugins
https://github.com/neurosnap/neovimcraft
neovim neovim-awesome
Last synced: 5 days ago
JSON representation
website that makes it easy to find neovim plugins
- Host: GitHub
- URL: https://github.com/neurosnap/neovimcraft
- Owner: neurosnap
- License: mit
- Created: 2021-07-19T01:42:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-14T13:52:49.000Z (3 months ago)
- Last Synced: 2024-10-22T20:33:05.045Z (12 days ago)
- Topics: neovim, neovim-awesome
- Language: TypeScript
- Homepage: https://neovimcraft.com
- Size: 1.08 MB
- Stars: 326
- Watchers: 5
- Forks: 40
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-sveltekit - [code
README
# [neovimcraft.com](https://neovimcraft.com)
A site dedicated to finding the best neovim plugins.
## Requirements
- deno
## Want to submit a plugin?
There are a couple of ways to add plugins to `neovimcraft`. Probably the
simplest way would be to get your plugin added to
[awesome-neovim](https://github.com/rockerBOO/awesome-neovim). We scrape that
repo and is the primary data source for the plugin directory.If you'd like to suggest a plugin to `neovimcraft` directly then feel free to
open a github issue or submit a PR after running the following command:```bash
make resource
```This command will step through the requirements for adding a resource to the
site.## Want to submit a config?
If you'd like to suggest a config to add to `neovimcraft.com/c` then feel free
to submit a PR after running the following command:```bash
make resource-config
```This command will step through the requirements for adding a resource to the
site.## nvim.sh
Want to query neovimcraft from the terminal?
```bash
curl https://nvim.sh
```https://github.com/neurosnap/nvim.sh
## Developing
You need to add a couple environment variables related to using the github api:
```bash
export GITHUB_ACCESS_TOKEN='xxx'
export GITHUB_USERNAME='my-user'
```To scrape and process all plugins, run:
```bash
make scrape
```To build the static site, run:
```bash
make build
```