From 5497024f6438e2c6739d0bcd869c3b3d721d08d9 Mon Sep 17 00:00:00 2001 From: James Harley <27085725+JKHarley@users.noreply.github.com> Date: Sun, 1 Sep 2024 11:59:58 +0100 Subject: [PATCH] Fix syntax error in LazyVim installation details --- README.md | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 7700bae..8dc1523 100644 --- a/README.md +++ b/README.md @@ -33,20 +33,19 @@ return { }, event = { "VeryLazy" }, opts = { - features = { - null_ls = { - enable = true, - }, - route_info = { - enable = true, --- to enable the laravel.nvim virtual text - position = 'right', --- where to show the info (available options 'right', 'top') - middlewares = true, --- wheather to show the middlewares section in the info - method = true, --- wheather to show the method section in the info - uri = true --- wheather to show the uri section in the info - }, + features = { + null_ls = { + enable = true, + }, + route_info = { + enable = true, --- to enable the laravel.nvim virtual text + position = 'right', --- where to show the info (available options 'right', 'top') + middlewares = true, --- wheather to show the middlewares section in the info + method = true, --- wheather to show the method section in the info + uri = true --- wheather to show the uri section in the info }, }, - } + }, config = true, } ```