Initial telescope config

TODO: add keybinds and more extensions
This commit is contained in:
Robert Morrison 2022-07-15 06:52:29 +01:00
parent 26d5e3b1ce
commit c711b119c1
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

View File

@ -0,0 +1,19 @@
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')