diff --git a/README.md b/README.md index a93de51..b441361 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,14 @@ vim +PluginInstall +qall #### Installation using [Lazy](https://github.com/folke/lazy.nvim) -Add repository within `require('lazy').setup` call in your vimrc (or for plugins file ie. /lua/plugins/, do the same within a `return{}` statement) +Add repository within `require('lazy').setup` call in your vimrc (or for plugins file ie. /lua/plugins/, do the same within a `return{}` statement). + +If you are unfamiliar with lua, note that the brackets `{`, `}` need a closing comma (`},`) if you are adding this to an existing function like the .setup call. + +``` { 'vimwiki/vimwiki' } ``` + +**Example with options (Change syntax to markdown)**: + ``` lua { 'vimwiki/vimwiki',