local actions = require('telescope.actions') local mappingTab = { i = { [''] = actions.select_tab, [''] = actions.select_default, } } require('telescope').setup { defaults = { mappings = { i = { [''] = actions.close, [''] = actions.select_default + actions.center, [''] = actions.send_selected_to_loclist, [''] = actions.smart_send_to_qflist } } }, pickers = { -- Your special builtin config goes in here buffers = { sort_lastused = true, theme = 'ivy', mappings = { i = { [''] = actions.delete_buffer, [''] = actions.select_default, }, n = { [''] = actions.delete_buffer, } } }, find_files = { mappings = mappingTab, theme = 'ivy', }, oldfiles = { mappings = mappingTab, theme = 'ivy', }, git_files = { mappings = mappingTab, theme = 'ivy', }, lsp_dynamic_workspace_symbols = { mappings = mappingTab }, } }