Skip to content

Commit

Permalink
docs(readme): fix setup example (#375)
Browse files Browse the repository at this point in the history
Couldn't load config without these commas
  • Loading branch information
kobylianskii authored Mar 24, 2024
1 parent 789558e commit fe102e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit fe102e6

Please sign in to comment.