From 1ed12d080045b06be36f11a999bc805fd6ab51ec Mon Sep 17 00:00:00 2001 From: Alejandro Bernal <33394999+aldevv@users.noreply.github.com> Date: Fri, 10 Feb 2023 22:33:59 -0500 Subject: [PATCH] Update README.md (#289) lazy.nvim installation code was broken --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6985d10..394264b 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ use 'nvim-treesitter/nvim-treesitter' end, event = {"CmdlineEnter"}, ft = {"go", 'gomod'}, - build = ':lua require('go.install').update_all_sync()' -- if you need to install/update all binaries + build = ':lua require("go.install").update_all_sync()' -- if you need to install/update all binaries } ```