template.nvim/Readme.md

28 lines
562 B
Markdown
Raw Normal View History

2024-07-02 23:10:09 +00:00
# $REPO_NAME
![Neovim Badge](https://img.shields.io/badge/${REPO_NAME_LOWER}-_?style=for-the-badge&logo=neovim&labelColor=gray&color=limegreen)
## Description
<!--Description here -->
## Installation
### [Lazy](https://github.com/folke/lazy.nvim)
```lua
return {
'${REPO_LINK}',
config = function()
require('${REPO_NAME_LOWER_KEBAB}').setup()
end
}
```
### [Plug](https://github.com/junegunn/vim-plug)
```lua
Plug '${REPO_NAME_LOWER_KEBAB}'
```
### [Packer](https://github.com/wbthomason/packer.nvim)
```lua
use '${REPO_NAME_LOWER_KEBAB}'
```