local telescope = require("telescope") local actions = require("telescope.actions") telescope.setup({ defaults = { path_display = { "smart" }, file_ignore_patterns = { ".git/" }, mappings = { i = { [""] = actions.cycle_history_next, [""] = actions.cycle_history_prev, [""] = actions.move_selection_next, [""] = actions.move_selection_previous, } } } })