nvimconfig/after/plugin/telescope.lua
2022-07-25 20:36:23 +01:00

21 lines
336 B
Lua

local ok, telescope = pcall(require,"telescope")
if not ok then
print("no telescope")
return
end
telescope.setup {
extensions = {
fzf = {
fuzzy = true,
override_generic_sorter = true,
override_file_sorter = true,
case_mode = "smart_case",
}
}
}
telescope.load_extension('fzf')
telescope.load_extension("flutter")