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.

22 lines
427 B
Lua

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