From 20f1e1efc12f32108a6bc8e30ed8ceb3edc436d8 Mon Sep 17 00:00:00 2001 From: Philipp Gniewosz Date: Fri, 10 Oct 2025 13:58:47 +0200 Subject: [PATCH] fixing syntax error for packer-config example Copy/pasting this snippet leads to error: ``` E5107: Error loading lua [string ":source buffer=1"]:89: '}' expected (to close '{' at line 86) near '"ibhagwan/fzf-lua"' ``` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b5c258..1ccaf2e 100644 --- a/README.md +++ b/README.md @@ -59,8 +59,8 @@ use { ft = { "yaml" }, -- optional requires = { "folke/snacks.nvim", -- optional - "nvim-telescope/telescope.nvim" -- optional - "ibhagwan/fzf-lua" --optional + "nvim-telescope/telescope.nvim", -- optional + "ibhagwan/fzf-lua", -- optional }, } ```