return { "nvim-telescope/telescope.nvim", branch = "0.1.x", dependencies = { "nvim-lua/plenary.nvim", { "nvim-telescope/telescope-fzf-native.nvim", build = "make" } }, config = function() local telescope = require("telescope") telescope.setup { defaults = { layout_strategy = "vertical", file_ignore_patterns = { "node_modules" } } } telescope.load_extension("fzf") end }