local actions = require('telescope.actions') local mappingTab = { i = { [""] = actions.select_tab, [""] = actions.select_default, } } local mappingDefault require('telescope').setup{ pickers = { -- Your special builtin config goes in here buffers = { sort_lastused = true, previewer = false, theme = "dropdown", mappings = { i = { [""] = actions.delete_buffer, [""] = actions.select_default, }, n = { [""] = actions.delete_buffer, } } }, find_files = { mappings = mappingTab }, git_files = { mappings = mappingTab }, lsp_dynamic_workspace_symbols = { mappings = mappingTab }, } }