This repo contains the bare minimum boilerplate to setup a Neovim Plugin in lua
Clone the project
git clone https://github.com/koenverburg/template-nvim-plugin.git
Then cd into the directory and launch nvim using the following command
nvim --cmd "set rtp+=$(pwd)"
After this you can call the plugin with the following command
:lua require('greeting').setup({ enable = true })
This should return Hello World!