local telescope = require('telescope') local actions = require('telescope.actions') telescope.setup({ defaults = { layout_config = { prompt_position = 'bottom', horizontal = { width_padding = 0.04, height_padding = 0.1, preview_width = 0.6, }, vertical = { width_padding = 0.05, height_padding = 1, preview_height = 0.5, }, }, mappings = { i = { [''] = false, [''] = actions.select_horizontal, }, }, }, }) local builtin = require('telescope.builtin') vim.keymap.set('n', '', builtin.git_files) vim.keymap.set('n', 'ff', builtin.find_files) vim.keymap.set('n', 'fg', builtin.live_grep) vim.keymap.set('n', 'fh', builtin.help_tags)