local map = require('utils').map -- telescope local actions = require('telescope.actions') require('telescope').setup({ defaults = { layout_config = { horizontal = { width = 0.75, height = 0.6, }, }, mappings = { i = { [''] = actions.close, [''] = actions.move_selection_previous, [''] = actions.move_selection_next, [''] = { '', type = 'command' }, [''] = { '', type = 'command' }, [''] = actions.preview_scrolling_down, [''] = actions.preview_scrolling_up, }, }, }, }) map('n', 'ff', 'Telescope find_files') map('n', 'fg', 'Telescope live_grep') map('n', 'fb', 'Telescope buffers') map('n', 'fh', 'Telescope help_tags') map('n', ';', 'Telescope commands')