setup
This commit is contained in:
commit
69a4fc1942
2 changed files with 27 additions and 0 deletions
27
Readme.md
Normal file
27
Readme.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# $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}'
|
||||||
|
```
|
0
lua/${REPO_NAME_LOWER_KEBAB}/init.lua
Normal file
0
lua/${REPO_NAME_LOWER_KEBAB}/init.lua
Normal file
Loading…
Reference in a new issue