You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
569 B
Lua

require('telescope').setup({
defaults = {
layout_strategy = 'horizontal',
layout_config = {
preview_width = 0.5,
prompt_position = 'bottom',
width = 0.9,
height = 0.9,
},
borderchars = {
prompt = { '', ' ', ' ', ' ', '', '', ' ', ' ' },
results = { ' ' },
preview = { ' ' },
},
},
extensions = {
fzf = {
fuzzy = true,
override_generic_sorter = true,
override_file_sorter = true,
case_mode = 'smart_case',
},
},
})
require('telescope').load_extension('fzf')