From 50f1f80c32f16eae623f36fac9b5e6c4c4c52c7d Mon Sep 17 00:00:00 2001 From: kobylianskii <122800364+kobylianskii@users.noreply.github.com> Date: Sun, 24 Mar 2024 01:03:05 +0100 Subject: [PATCH] readme: fix setup example Couldn't load config without these commas --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b4d9e85..0c94a0f 100644 --- a/README.md +++ b/README.md @@ -95,8 +95,8 @@ local fb_actions = require "telescope._extensions.file_browser.actions" require("telescope").setup { extensions = { file_browser = { - path = vim.loop.cwd() - cwd = vim.loop.cwd() + path = vim.loop.cwd(), + cwd = vim.loop.cwd(), cwd_to_path = false, grouped = false, files = true, @@ -105,7 +105,7 @@ require("telescope").setup { auto_depth = false, select_buffer = false, hidden = { file_browser = false, folder_browser = false }, - respect_gitignore = vim.fn.executable "fd" == 1 + respect_gitignore = vim.fn.executable "fd" == 1, no_ignore = false, follow_symlinks = false, browse_files = require("telescope._extensions.file_browser.finders").browse_files,