2024-07-02 23:10:09 +00:00
|
|
|
![Neovim Badge](https://img.shields.io/badge/${REPO_NAME_LOWER}-_?style=for-the-badge&logo=neovim&labelColor=gray&color=limegreen)
|
|
|
|
|
|
|
|
# $REPO_NAME
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<!--Description here -->
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
### [Lazy](https://github.com/folke/lazy.nvim)
|
|
|
|
```lua
|
|
|
|
return {
|
|
|
|
'${REPO_LINK}',
|
|
|
|
config = function()
|
|
|
|
require('${REPO_NAME_KEBAB}').setup()
|
|
|
|
end
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### [Plug](https://github.com/junegunn/vim-plug)
|
|
|
|
```lua
|
|
|
|
Plug '${REPO_LINK}'
|
|
|
|
```
|
|
|
|
|
|
|
|
### [Packer](https://github.com/wbthomason/packer.nvim)
|
|
|
|
```lua
|
|
|
|
use '${REPO_LINK}'
|
|
|
|
```
|
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
This Project uses:
|
|
|
|
- [Justfile](https://just.systems/man/en/) run `just`, for more information
|
2024-07-03 19:18:39 +00:00
|
|
|
|
|
|
|
## License [GPL3](License.md)
|