return { "nvim-telescope/telescope.nvim", opts = { defaults = { -- Don't respect .gitignore - show logs and temp files file_ignore_patterns = { "node_modules/", "__pycache__/", ".git/", ".pytest_cache/", "%.pyc$", "%.pyo$", }, -- Make sure to not use git_files by default vimgrep_arguments = { "rg", "--color=never", "--no-heading", "--with-filename", "--line-number", "--column", "--smart-case", -- Don't respect gitignore "--no-ignore", }, }, pickers = { find_files = { -- Show hidden files and don't respect gitignore hidden = true, no_ignore = true, }, }, }, }