https://github.com/italocobains/basic-struct-for-nvim-plugins
Struct basic for neovim plugins
https://github.com/italocobains/basic-struct-for-nvim-plugins
config lua neovim neovim-plugin structure
Last synced: about 1 month ago
JSON representation
Struct basic for neovim plugins
- Host: GitHub
- URL: https://github.com/italocobains/basic-struct-for-nvim-plugins
- Owner: ItaloCobains
- License: mit
- Created: 2022-07-14T13:40:53.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-14T14:59:10.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T17:23:26.464Z (over 1 year ago)
- Topics: config, lua, neovim, neovim-plugin, structure
- Language: Lua
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# basic-struct-for-nvim-plugins
Struct basic for neovim plugins
# How to use ?
- Clone this repository
```bash
git clone https://github.com/ItaloCobains/basic-struct-for-nvim-plugins
```
- Go to repository
```bash
cd basic-struct-for-nvim-plugins
```
- Open your neovim with the command
```bash
sudo nvim --cmd "set rtp+=."
```
- Testing your code in neovim
```bash
:lua require('greetings').greet()
```
- Update code use this command
```bash
:luafile dev/init.lua
```
- And run
```bash
:lua require('greetings').greet()
```