21 lines
336 B
Lua
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")
|