From 92e911c25e7f108e23182e836ab74442bc30ec3d Mon Sep 17 00:00:00 2001 From: xtbqimuxmvtx <112921562+xtbqimuxmvtx@users.noreply.github.com> Date: Mon, 26 May 2025 09:59:47 +0930 Subject: [PATCH] Fixed to include default options first, markdown as example --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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',