Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vantaboard/termux-clipboard
https://github.com/vantaboard/termux-clipboard
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vantaboard/termux-clipboard
- Owner: vantaboard
- License: mit
- Created: 2023-08-18T16:48:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-18T16:48:44.000Z (over 1 year ago)
- Last Synced: 2024-11-11T01:14:02.341Z (2 months ago)
- Language: Lua
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A Neovim Plugin Template
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/ellisonleao/nvim-plugin-template/lint-test.yml?branch=main&style=for-the-badge)
![Lua](https://img.shields.io/badge/Made%20with%20Lua-blueviolet.svg?style=for-the-badge&logo=lua)A template repository for Neovim plugins.
## Using it
Via `gh`:
```
$ gh repo create my-plugin -p ellisonleao/nvim-plugin-template
```Via github web page:
Click on `Use this template`
![](https://docs.github.com/assets/cb-36544/images/help/repository/use-this-template-button.png)
## Features and structure
- 100% Lua
- Github actions for:
- running tests using [plenary.nvim](https://github.com/nvim-lua/plenary.nvim) and [busted](https://olivinelabs.com/busted/)
- check for formatting errors (Stylua)
- vimdocs autogeneration from README.md file
- luarocks release (LUAROCKS_API_KEY secret configuration required)### Plugin structure
```
.
├── lua
│ ├── plugin_name
│ │ └── module.lua
│ └── plugin_name.lua
├── Makefile
├── plugin
│ └── plugin_name.lua
├── README.md
├── tests
│ ├── minimal_init.lua
│ └── plugin_name
│ └── plugin_name_spec.lua
```