Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 498 Bytes

readme.md

File metadata and controls

24 lines (16 loc) · 498 Bytes

Nvim Plugin Template

This repo contains the bare minimum boilerplate to setup a Neovim Plugin in lua

Getting started

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!